27 lines
757 B
Python
27 lines
757 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2017-10-11 21:37
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('webapp', '0026_auto_20171011_2236'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.DeleteModel(
|
|
name='KaehmyFormSelectedRole',
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='customkaehmyrole',
|
|
options={'verbose_name': 'Custom kaehmy role', 'verbose_name_plural': 'Custom kaehmy roles'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='presetkaehmyrole',
|
|
options={'verbose_name': 'Preset kaehmy role', 'verbose_name_plural': 'Preset kaehmy roles'},
|
|
),
|
|
]
|