Rename publishable to approved, add profile option to approve by default.
[redakcja.git] / src / team / migrations / 0002_profile_approve_by_default.py
diff --git a/src/team/migrations/0002_profile_approve_by_default.py b/src/team/migrations/0002_profile_approve_by_default.py
new file mode 100644 (file)
index 0000000..7827fea
--- /dev/null
@@ -0,0 +1,19 @@
+# Generated by Django 4.1.9 on 2023-10-10 15:28
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ("team", "0001_initial"),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name="profile",
+            name="approve_by_default",
+            field=models.BooleanField(default=False),
+            preserve_default=False,
+        ),
+    ]