mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
30 lines
774 B
Python
30 lines
774 B
Python
|
# Generated by Django 2.2.8 on 2020-01-15 18:10
|
||
|
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('extras', '0034_configcontext_tags'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name='customfieldvalue',
|
||
|
options={'ordering': ('obj_type', 'obj_id', 'pk')},
|
||
|
),
|
||
|
migrations.AlterModelOptions(
|
||
|
name='graph',
|
||
|
options={'ordering': ('type', 'weight', 'name', 'pk')},
|
||
|
),
|
||
|
migrations.AlterModelOptions(
|
||
|
name='imageattachment',
|
||
|
options={'ordering': ('name', 'pk')},
|
||
|
),
|
||
|
migrations.AlterModelOptions(
|
||
|
name='webhook',
|
||
|
options={'ordering': ('name',)},
|
||
|
),
|
||
|
]
|