This commit is contained in:
j 2021-09-28 15:10:22 +02:00
commit 0508d8cd9a
53 changed files with 765 additions and 0 deletions

10
app/user/models.py Normal file
View file

@ -0,0 +1,10 @@
import logging
from django.db import models
from django.contrib.auth.models import AbstractUser
logger = logging.getLogger(__name__)
class User(AbstractUser):
modified = models.DateTimeField(auto_now=True)
data = models.JSONField(default=dict, blank=True, editable=False)