|
|
|
|
@ -6,12 +6,12 @@ from django.db import migrations
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
|
('blog', '0005_alter_article_options_alter_category_options_and_more'),
|
|
|
|
|
('blog', '0005_alter_article_options_alter_category_options_and_more'), #ZNY 依赖于blog应用的第五个迁移文件0005
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
|
migrations.AlterModelOptions(
|
|
|
|
|
name='blogsettings',
|
|
|
|
|
options={'verbose_name': 'Website configuration', 'verbose_name_plural': 'Website configuration'},
|
|
|
|
|
name='blogsettings', #ZNY 修改BlogSettings模型的选项配置
|
|
|
|
|
options={'verbose_name': 'Website configuration', 'verbose_name_plural': 'Website configuration'}, #ZNY 将BlogSettings模型的显示名称从中文改为英文
|
|
|
|
|
),
|
|
|
|
|
]
|
|
|
|
|
]
|