This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/articles/models.py
2020-08-14 14:53:30 +02:00

7 lines
118 B
Python

from django.contrib.auth.models import AbstractUser
from django.db import models
class User(AbstractUser):
pass