mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-25 21:09:59 -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
32 lines
976 B
Python
32 lines
976 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('ipam', '0075_vlan_qinq'),
|
|
('dcim', '0197_natural_sort_collation'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='asnrange',
|
|
name='name',
|
|
field=models.CharField(db_collation='natural_sort', max_length=100, unique=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='routetarget',
|
|
name='name',
|
|
field=models.CharField(db_collation='natural_sort', max_length=21, unique=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='vlangroup',
|
|
name='name',
|
|
field=models.CharField(db_collation='natural_sort', max_length=100),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='vrf',
|
|
name='name',
|
|
field=models.CharField(db_collation='natural_sort', max_length=100),
|
|
),
|
|
]
|