user model created, no migrations yet

This commit is contained in:
2025-04-18 09:26:18 +02:00
parent 2c5b65f070
commit 9b132bc558
2 changed files with 12 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
from django.db import models
from django.contrib.auth.models import AbstractUser
class User(AbstractUser):
account_id = models.CharField(max_length=10, unique=True)
# Create your models here.