mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Rename cable_peer fields to link_peer
This commit is contained in:
23
netbox/circuits/migrations/0003_rename_cable_peer.py
Normal file
23
netbox/circuits/migrations/0003_rename_cable_peer.py
Normal file
@@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.2.8 on 2021-10-13 17:47
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('circuits', '0002_squashed_0029'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RenameField(
|
||||
model_name='circuittermination',
|
||||
old_name='_cable_peer_id',
|
||||
new_name='_link_peer_id',
|
||||
),
|
||||
migrations.RenameField(
|
||||
model_name='circuittermination',
|
||||
old_name='_cable_peer_type',
|
||||
new_name='_link_peer_type',
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user