mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-18 11:22:25 -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
22 lines
637 B
Python
22 lines
637 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('circuits', '0048_circuitterminations_cached_relations'),
|
|
('dcim', '0197_natural_sort_collation'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='provider',
|
|
name='name',
|
|
field=models.CharField(db_collation='natural_sort', max_length=100, unique=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='providernetwork',
|
|
name='name',
|
|
field=models.CharField(db_collation='natural_sort', max_length=100),
|
|
),
|
|
]
|