example-of-crud-in-django-w.../app/libros/models.py
Andros Fenollosa 964053e51c First commit
2021-07-05 15:56:53 +02:00

6 lines
123 B
Python

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