1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fix ordering for Tags

This commit is contained in:
Jeremy Stretch
2020-07-23 14:23:50 -04:00
parent 37706f1c87
commit 9bcfefa31e
4 changed files with 28 additions and 14 deletions

View File

@@ -0,0 +1,17 @@
# Generated by Django 3.1rc1 on 2020-07-23 18:22
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('extras', '0046_update_jsonfield'),
]
operations = [
migrations.AlterModelOptions(
name='tag',
options={'ordering': ['name']},
),
]