8 lines
172 B
Python
8 lines
172 B
Python
from django.db import models
|
|
from django.contrib.auth.models import AbstractUser
|
|
|
|
|
|
class User(AbstractUser):
|
|
account_id = models.CharField(max_length=10, unique=True)
|
|
|