Skip to content
Snippets Groups Projects
Commit 0075e5ab authored by Ben Adida's avatar Ben Adida
Browse files

missing migration

parent e1090c73
No related branches found
No related tags found
No related merge requests found
# -*- 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'),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment