mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-15 16:22:18 -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
399 B
Python
18 lines
399 B
Python
# Generated by Django 4.2.9 on 2024-01-20 09:37
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('vpn', '0003_ipaddress_multiple_tunnel_terminations'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='ikepolicy',
|
|
name='mode',
|
|
field=models.CharField(blank=True),
|
|
),
|
|
]
|