fix: 添加迁移文件: Node ordering

pull/5169/head^2
Bai 2020-12-03 11:05:38 +08:00 committed by Jiangjie.Bai
parent 3354ab8ce9
commit 36e9d8101a
1 changed files with 17 additions and 0 deletions

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'},
),
]