mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-16 05:19:36 -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
28 lines
814 B
Python
28 lines
814 B
Python
# Generated by Django 5.0.6 on 2024-06-12 18:15
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('wireless', '0001_squashed_0008'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='wirelesslink',
|
|
name='_abs_distance',
|
|
field=models.DecimalField(blank=True, decimal_places=4, max_digits=10, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='wirelesslink',
|
|
name='distance',
|
|
field=models.DecimalField(blank=True, decimal_places=2, max_digits=8, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='wirelesslink',
|
|
name='distance_unit',
|
|
field=models.CharField(blank=True, max_length=50),
|
|
),
|
|
]
|