21 lines
476 B
Python
21 lines
476 B
Python
# Generated by Django 2.1.5 on 2019-10-10 15:37
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("webapp", "0057_auto_20190926_2102"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="official",
|
|
name="role_history",
|
|
field=models.ManyToManyField(
|
|
blank=True, related_name="officials", to="webapp.Occupation"
|
|
),
|
|
),
|
|
]
|