fix(access): Add missing attribute Meta.ordering Config Groups model

ref:  #248 #345 #346
This commit is contained in:
2024-10-13 16:15:03 +09:30
parent 8e0af707cf
commit 3080b1c1b7
3 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,17 @@
# Generated by Django 5.1.2 on 2024-10-13 06:42
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('access', '0001_initial'),
]
operations = [
migrations.AlterModelOptions(
name='team',
options={'ordering': ['team_name'], 'verbose_name': 'Team', 'verbose_name_plural': 'Teams'},
),
]