2017-11-15 12:54:49 -06:00
|
|
|
# -*- coding: utf-8 -*-
|
2017-11-15 13:57:19 -05:00
|
|
|
# Generated by Django 1.11.6 on 2017-11-15 18:56
|
2017-11-15 12:54:49 -06:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
import django.db.models.deletion
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('tenancy', '0003_unicode_literals'),
|
2017-11-15 13:57:19 -05:00
|
|
|
('dcim', '0050_interface_vlan_tagging'),
|
2017-11-15 12:54:49 -06:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='rackreservation',
|
|
|
|
name='tenant',
|
|
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, related_name='rackreservations', to='tenancy.Tenant'),
|
|
|
|
),
|
|
|
|
]
|