example-of-crud-in-django-w.../app/libros/models.py

6 lines
123 B
Python
Raw Normal View History

2021-07-05 15:56:53 +02:00
from django.db import models
from django.contrib.auth.models import AbstractUser
class CustomUser(AbstractUser):
pass