Files
LibraryApp/backend/apps/authors/models.py
2026-03-17 20:42:58 +01:00

6 lines
230 B
Python

# from django.db import models
# from apps.user.models import User
# class Author(models.Model):
# user = models.ForeignKey(User, on_delete=models.CASCADE, related_name="Authors")
# name = models.CharField(max_length=255)