mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
22 lines
544 B
Python
22 lines
544 B
Python
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('dcim', '0136_device_airflow'),
|
||
|
('virtualization', '0023_virtualmachine_natural_ordering'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='cluster',
|
||
|
name='name',
|
||
|
field=models.CharField(max_length=100),
|
||
|
),
|
||
|
migrations.AlterUniqueTogether(
|
||
|
name='cluster',
|
||
|
unique_together={('site', 'name'), ('group', 'name')},
|
||
|
),
|
||
|
]
|