mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 01:41:22 -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
17 lines
400 B
Python
17 lines
400 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 = [
|
|
('core', '0009_configrevision'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddIndex(
|
|
model_name='job',
|
|
index=models.Index(fields=['object_type', 'object_id'], name='core_job_object__c664ac_idx'),
|
|
),
|
|
]
|