From 0075e5abe1c0839a3cfd33b5266a58dcd841d5d3 Mon Sep 17 00:00:00 2001
From: Ben Adida <ben@adida.net>
Date: Sat, 23 Jan 2021 17:51:29 +0000
Subject: [PATCH] missing migration

---
 helios/migrations/0005_auto_20210123_0941.py | 30 ++++++++++++++++++++
 1 file changed, 30 insertions(+)
 create mode 100644 helios/migrations/0005_auto_20210123_0941.py

diff --git a/helios/migrations/0005_auto_20210123_0941.py b/helios/migrations/0005_auto_20210123_0941.py
new file mode 100644
index 0000000..355687c
--- /dev/null
+++ b/helios/migrations/0005_auto_20210123_0941.py
@@ -0,0 +1,30 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.28 on 2021-01-23 09:41
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('helios', '0004_auto_20170528_2025'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='election',
+            name='datatype',
+            field=models.CharField(default='legacy/Election', max_length=250),
+        ),
+        migrations.AlterField(
+            model_name='election',
+            name='election_type',
+            field=models.CharField(choices=[('election', 'Election'), ('referendum', 'Referendum')], default='election', max_length=250),
+        ),
+        migrations.AlterField(
+            model_name='voterfile',
+            name='voter_file',
+            field=models.FileField(max_length=250, null=True, upload_to='voters/%Y/%m/%d'),
+        ),
+    ]
-- 
GitLab