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