What are the attributes that are defined in the Django AbstractUser model?
I have extended the model:
from django.db import models from django.contrib.auth.models import AbstractUser class User(AbstractUser): pass Do I have to create my own fields for username, first name, last name, etc? Or are they already defined?