django-fobi/examples/simple/customauth/models.py

10 lines
214 B
Python

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