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,21 @@
# Generated by Django 6.0.3 on 2026-03-10 19:49
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Shelf',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('name', models.CharField(max_length=100)),
],
),
]