mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-03-29 03:20:22 +00:00
10 lines
214 B
Python
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)
|