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