Experimetal Woblink.
[redakcja.git] / src / depot / migrations / 0005_shop_name_shop_publisher_handle.py
diff --git a/src/depot/migrations/0005_shop_name_shop_publisher_handle.py b/src/depot/migrations/0005_shop_name_shop_publisher_handle.py
new file mode 100644 (file)
index 0000000..b50632d
--- /dev/null
@@ -0,0 +1,24 @@
+# Generated by Django 4.1.9 on 2023-08-10 18:55
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ("depot", "0004_shopbookpublish_shop"),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name="shop",
+            name="name",
+            field=models.CharField(default="", max_length=255),
+            preserve_default=False,
+        ),
+        migrations.AddField(
+            model_name="shop",
+            name="publisher_handle",
+            field=models.CharField(blank=True, max_length=255),
+        ),
+    ]