27 lines
776 B
Python
27 lines
776 B
Python
# Generated by Django 3.0.5 on 2020-05-17 06:00
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('system', '0002_dict_dicttype'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='dict',
|
|
options={'verbose_name': '字典', 'verbose_name_plural': '字典'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='dicttype',
|
|
options={'verbose_name': '字典类型', 'verbose_name_plural': '字典类型'},
|
|
),
|
|
migrations.AlterField(
|
|
model_name='permission',
|
|
name='method',
|
|
field=models.CharField(blank=True, max_length=50, null=True, unique=True, verbose_name='方法/代号'),
|
|
),
|
|
]
|