You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
592 B
20 lines
592 B
# 由Django 4.2.7于2024-01-26 02:41自动生成
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
# 迁移依赖关系
|
|
dependencies = [
|
|
# 依赖blog应用的0005迁移文件
|
|
('blog', '0005_alter_article_options_alter_category_options_and_more'),
|
|
]
|
|
|
|
# 迁移操作列表
|
|
operations = [
|
|
# 修改BlogSettings模型的元选项
|
|
migrations.AlterModelOptions(
|
|
name='blogsettings',
|
|
options={'verbose_name': 'Website configuration', 'verbose_name_plural': 'Website configuration'},
|
|
),
|
|
] |