Allow assigning woblink authors in catalogue.
[redakcja.git] / src / catalogue / migrations / 0047_author_woblink.py
diff --git a/src/catalogue/migrations/0047_author_woblink.py b/src/catalogue/migrations/0047_author_woblink.py
new file mode 100644 (file)
index 0000000..d4b3aa8
--- /dev/null
@@ -0,0 +1,18 @@
+# Generated by Django 4.1.9 on 2023-07-18 11:05
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ("catalogue", "0046_thema"),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name="author",
+            name="woblink",
+            field=models.IntegerField(blank=True, null=True),
+        ),
+    ]