mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-16 05:19:36 -06:00
20 lines
559 B
Python
20 lines
559 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-07-14 21:38
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dcim', '0009_site_32bit_asn_support'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='devicebay',
|
|
name='installed_device',
|
|
field=models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='parent_bay', to='dcim.Device'),
|
|
),
|
|
]
|