diff --git a/vote/migrations/0020_election_remind_text_sent.py b/vote/migrations/0020_election_remind_text_sent.py
new file mode 100644
index 0000000000000000000000000000000000000000..314bc21f5e45a774e9a325924af86b8da758c04b
--- /dev/null
+++ b/vote/migrations/0020_election_remind_text_sent.py
@@ -0,0 +1,17 @@
+# Generated by Django 3.1.2 on 2020-11-02 17:48
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+    dependencies = [
+        ('vote', '0019_auto_20201030_1913'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='election',
+            name='remind_text_sent',
+            field=models.BooleanField(default=False),
+        ),
+    ]