mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
19 lines
399 B
Python
19 lines
399 B
Python
# Generated by Django 4.0.5 on 2022-06-22 18:51
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('circuits', '0035_provider_asns'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='circuit',
|
|
name='termination_date',
|
|
field=models.DateField(blank=True, null=True),
|
|
),
|
|
]
|