mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-20 20:32: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
18 lines
406 B
Python
18 lines
406 B
Python
# Generated by Django 4.2.4 on 2024-03-17 02:21
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('dcim', '0185_gfk_indexes'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='location',
|
|
name='facility',
|
|
field=models.CharField(blank=True, max_length=50),
|
|
),
|
|
]
|