Files
FleetManager/users/models.py
2021-02-03 17:37:08 +00:00

7 lines
150 B
Python

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