budjeto/authentication/models.py

6 lines
163 B
Python
Raw Normal View History

2024-02-06 10:21:09 +00:00
from django.db import models
from django.contrib.auth.models import AbstractUser
2024-02-06 10:21:09 +00:00
class User(AbstractUser):
email = models.EmailField(blank=False, null=False)