CourseField/apps/users/models.py

8 lines
145 B
Python

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