mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
22 lines
524 B
Python
22 lines
524 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.12 on 2018-05-22 19:27
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('dcim', '0057_tags'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name='rack',
|
||
|
options={'ordering': ['site', 'group', 'name']},
|
||
|
),
|
||
|
migrations.AlterUniqueTogether(
|
||
|
name='rack',
|
||
|
unique_together=set([('group', 'name'), ('group', 'facility_id')]),
|
||
|
),
|
||
|
]
|