2017-12-02 18:02:05 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
2018-10-04 19:29:19 +00:00
|
|
|
dependencies = [("election", "0002_election_archived")]
|
2017-12-02 18:02:05 +00:00
|
|
|
|
|
|
|
operations = [
|
2018-10-04 19:29:19 +00:00
|
|
|
migrations.AlterModelOptions(name="role", options={"ordering": ("order",)}),
|
2017-12-02 18:02:05 +00:00
|
|
|
migrations.AddField(
|
2018-10-04 19:29:19 +00:00
|
|
|
model_name="role",
|
|
|
|
name="order",
|
2017-12-02 18:02:05 +00:00
|
|
|
field=models.PositiveIntegerField(editable=False, default=0, db_index=True),
|
|
|
|
preserve_default=False,
|
|
|
|
),
|
|
|
|
]
|