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:
17
netbox/extras/migrations/0047_tag_ordering.py
Normal file
17
netbox/extras/migrations/0047_tag_ordering.py
Normal 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']},
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user