Files
webprewviewapi/account/models.py
2025-02-28 16:29:56 +08:00

8 lines
145 B
Python

from django.db import models
# Create your models here.
from django.contrib.auth.models import AbstractUser
class User(AbstractUser):
pass