django-site/main/models.py

8 lines
152 B
Python
Raw Normal View History

from django.contrib.auth.models import AbstractUser
2022-12-11 15:48:10 +03:00
from django.db import models
2022-12-11 15:48:10 +03:00
# Create your models here.
class User(AbstractUser):
pass