mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
17 lines
359 B
Python
17 lines
359 B
Python
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('circuits', '0025_standardize_models'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='circuittermination',
|
||
|
name='mark_connected',
|
||
|
field=models.BooleanField(default=False),
|
||
|
),
|
||
|
]
|