2021-03-08 13:28:53 -05:00
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('dcim', '0130_sitegroup'),
|
|
|
|
('extras', '0055_objectchange_data'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='configcontext',
|
|
|
|
name='site_groups',
|
|
|
|
field=models.ManyToManyField(blank=True, related_name='_extras_configcontext_site_groups_+', to='dcim.SiteGroup'),
|
|
|
|
),
|
2021-03-29 15:40:09 -04:00
|
|
|
migrations.AddField(
|
|
|
|
model_name='configcontext',
|
|
|
|
name='device_types',
|
|
|
|
field=models.ManyToManyField(blank=True, related_name='_extras_configcontext_device_types_+', to='dcim.DeviceType'),
|
|
|
|
),
|
2021-03-08 13:28:53 -05:00
|
|
|
]
|