mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-11 06:13:10 +00:00
6 lines
170 B
Python
6 lines
170 B
Python
|
|
from django.db import models
|
||
|
|
from django.contrib.auth.models import AbstractUser
|
||
|
|
|
||
|
|
class MyUser(AbstractUser):
|
||
|
|
date_of_birth = models.DateField(null=True, blank=True)
|