8 lines
152 B
Python
8 lines
152 B
Python
from django.contrib.auth.models import AbstractUser
|
|
from django.db import models
|
|
|
|
|
|
# Create your models here.
|
|
class User(AbstractUser):
|
|
pass
|