From cc899f710b027e05d22973ba1c727ca35a43cbf6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tobias=20J=C3=BClg?= <tobias.juelg@tum.de>
Date: Sun, 8 May 2022 12:32:18 +0200
Subject: [PATCH] Added missing migrations

---
 vote/migrations/0030_auto_20220508_1226.py | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 vote/migrations/0030_auto_20220508_1226.py

diff --git a/vote/migrations/0030_auto_20220508_1226.py b/vote/migrations/0030_auto_20220508_1226.py
new file mode 100644
index 0000000..5aa3ebd
--- /dev/null
+++ b/vote/migrations/0030_auto_20220508_1226.py
@@ -0,0 +1,18 @@
+# Generated by Django 3.1.14 on 2022-05-08 10:26
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('vote', '0029_rename_unpublished_and_disable_abstention'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='election',
+            name='enable_abstention',
+            field=models.BooleanField(default=True),
+        ),
+    ]
-- 
GitLab