budjeto/authentication/models.py

6 lines
163 B
Python

from django.db import models
from django.contrib.auth.models import AbstractUser
class User(AbstractUser):
email = models.EmailField(blank=False, null=False)