10 lines
212 B
Python
10 lines
212 B
Python
from django.db import models
|
|
from django.contrib.auth.models import AbstractUser
|
|
|
|
class CustomUser(AbstractUser):
|
|
pass
|
|
# add additional fields in here
|
|
|
|
def __str__(self):
|
|
return self.username
|