mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
21 lines
477 B
Python
21 lines
477 B
Python
![]() |
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('circuits', '0036_new_cabling_models'),
|
||
|
('dcim', '0157_populate_cable_ends'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name='circuittermination',
|
||
|
name='_link_peer_id',
|
||
|
),
|
||
|
migrations.RemoveField(
|
||
|
model_name='circuittermination',
|
||
|
name='_link_peer_type',
|
||
|
),
|
||
|
]
|