Add a User model

This commit is contained in:
Andreas Zweili 2023-10-08 19:42:05 +02:00
parent 13b0df6df6
commit f3f9b14a7e
1 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
from django.db import models
from django.contrib.auth.models import AbstractUser
# Create your models here.
class User(AbstractUser):
pass