diff --git a/helios/migrations/0005_auto_20210123_0941.py b/helios/migrations/0005_auto_20210123_0941.py new file mode 100644 index 0000000000000000000000000000000000000000..355687c60a0129c2ed948815d938bfb1d67ed581 --- /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'), + ), + ]