butler_ddochi/nhnc_mgmt/migrations/0001_initial.py
icurfer ea11832a53
Some checks failed
Build And Test / build-and-push (push) Failing after 53s
init
2024-12-13 17:12:03 +09:00

24 lines
670 B
Python

# Generated by Django 4.2.14 on 2024-11-15 15:47
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Igw',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('title', models.CharField(max_length=100, unique=True)),
('routing_table', models.CharField(max_length=200, unique=True)),
('external_network_name', models.CharField(max_length=50, null=True)),
],
),
]