mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
* Initial work on #5892 * Add site group selection to object edit forms * Add documentation for site groups * Changelog for #5892 * Finish application of site groups to config context
18 lines
457 B
Python
18 lines
457 B
Python
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'),
|
|
),
|
|
]
|