geriou-bir/users/models.py

8 lines
166 B
Python
Raw Normal View History

2023-09-10 15:32:07 +00:00
from django.db import models
from django.contrib.auth.models import AbstractUser
class User(AbstractUser):
def __str__(self):
return f"{self.username}"