This commit is contained in:
maciejrusek
2026-03-10 20:53:37 +01:00
commit 624ef3ca16
29 changed files with 454 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
from django.db import models
from apps.user.models import User
class Shelf(models.Model):
user = models.ForeignKey(User, on_delete=models.CASCADE, related_name="shelves")
name = models.CharField(max_length=100)