6 lines
175 B
Python
6 lines
175 B
Python
|
from django.contrib.auth.models import AbstractUser
|
||
|
from django.db import models
|
||
|
|
||
|
class CustomUser(AbstractUser):
|
||
|
age = models.PositiveIntegerField(null=True, blank=True)
|