tJango/user/models.py
Ahmet Kaan GÜMÜŞ b90fa4ae3c feat: uuid token
2024-07-03 05:37:18 +03:00

9 lines
229 B
Python

from django.db import models
class User(models.Model):
username = models.CharField(max_length=15, unique=True)
date_created = models.DateTimeField(auto_now_add=True)
def __str__(self):
return self.username