mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-17 09:12:18 -06:00
* Enable E501 rule * Configure ruff formatter * Reformat migration files to fix line length violations * Fix various E501 errors * Move table template code to template_code.py & ignore E501 errors * Reformat raw SQL
27 lines
835 B
Python
27 lines
835 B
Python
# Generated by Django 4.2.7 on 2023-12-07 16:09
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('ipam', '0068_move_l2vpn'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddIndex(
|
|
model_name='fhrpgroupassignment',
|
|
index=models.Index(fields=['interface_type', 'interface_id'], name='ipam_fhrpgr_interfa_2acc3f_idx'),
|
|
),
|
|
migrations.AddIndex(
|
|
model_name='ipaddress',
|
|
index=models.Index(
|
|
fields=['assigned_object_type', 'assigned_object_id'], name='ipam_ipaddr_assigne_890ab8_idx'
|
|
),
|
|
),
|
|
migrations.AddIndex(
|
|
model_name='vlangroup',
|
|
index=models.Index(fields=['scope_type', 'scope_id'], name='ipam_vlangr_scope_t_9da557_idx'),
|
|
),
|
|
]
|