django-fobi/examples/simple/customauth/models.py
2022-07-12 22:53:28 +02:00

10 lines
214 B
Python

from django.contrib.auth.models import AbstractUser
from django.db import models
__all__ = ("MyUser",)
class MyUser(AbstractUser):
"""My user."""
date_of_birth = models.DateField(null=True, blank=True)