mirror of
https://github.com/netbox-community/netbox.git
synced 2026-02-04 22:36:24 -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
23 lines
615 B
Python
23 lines
615 B
Python
# Generated by Django 4.2.8 on 2023-12-27 20:24
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('extras', '0104_stagedchange_remove_change_logging'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customfield',
|
|
name='validation_maximum',
|
|
field=models.BigIntegerField(blank=True, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='customfield',
|
|
name='validation_minimum',
|
|
field=models.BigIntegerField(blank=True, null=True),
|
|
),
|
|
]
|