forked from uncloud/uncloud
Best practice See https://docs.djangoproject.com/en/3.0/topics/auth/customizing/#using-a-custom-user-model-when-starting-a-project
4 lines
88 B
Python
4 lines
88 B
Python
from django.contrib.auth.models import AbstractUser
|
|
|
|
class User(AbstractUser):
|
|
pass
|