fix: 修改角色列表排序问题

This commit is contained in:
Bai
2023-02-02 16:06:15 +08:00
committed by Jiangjie.Bai
parent be151523f4
commit a045eb9936
4 changed files with 19 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
# Generated by Django 3.2.16 on 2023-02-02 08:03
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('rbac', '0011_remove_redundant_permission'),
]
operations = [
migrations.AlterModelOptions(
name='role',
options={'ordering': ('scope', 'name'), 'verbose_name': 'Role'},
),
]