21 lines
482 B
Python
21 lines
482 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2018-05-16 19:04
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("webapp", "0040_auto_20180516_2124"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="official",
|
|
name="role",
|
|
field=models.ManyToManyField(related_name="official", to="webapp.Role"),
|
|
),
|
|
]
|