mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
25 lines
790 B
Python
25 lines
790 B
Python
# Generated by Django 2.2.8 on 2020-01-17 18:11
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('virtualization', '0013_deterministic_ordering'),
|
|
('extras', '0036_contenttype_filters_to_q_objects'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='configcontext',
|
|
name='cluster_groups',
|
|
field=models.ManyToManyField(blank=True, related_name='_configcontext_cluster_groups_+', to='virtualization.ClusterGroup'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='configcontext',
|
|
name='clusters',
|
|
field=models.ManyToManyField(blank=True, related_name='_configcontext_clusters_+', to='virtualization.Cluster'),
|
|
),
|
|
]
|