fix: 添加迁移文件: Node ordering

This commit is contained in:
Bai 2020-12-03 11:05:38 +08:00 committed by Jiangjie.Bai
parent 3354ab8ce9
commit 36e9d8101a

View File

@ -0,0 +1,17 @@
# Generated by Django 3.1 on 2020-12-03 03:00
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('assets', '0063_migrate_default_node_key'),
]
operations = [
migrations.AlterModelOptions(
name='node',
options={'ordering': ['parent_key', 'value'], 'verbose_name': 'Node'},
),
]