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

6 lines
170 B
Python
Raw Normal View History

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