mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
17 lines
387 B
Python
17 lines
387 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('circuits', '0036_circuit_termination_date_tags_custom_fields'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='circuittermination',
|
|
name='cable_end',
|
|
field=models.CharField(blank=True, max_length=1),
|
|
),
|
|
]
|