24 lines
535 B
Python
24 lines
535 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2017-06-07 15:26
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("webapp", "0003_auto_20170607_1825"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name="official",
|
|
options={"verbose_name": "Official"},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name="role",
|
|
options={"verbose_name": "Role"},
|
|
),
|
|
]
|