2018-04-08 02:01:32 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.10.7 on 2018-04-08 01:16
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
import django.db.models.deletion
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2019-11-04 16:55:03 +00:00
|
|
|
dependencies = [("topologie", "0056_building_switchbay")]
|
2018-04-08 02:01:32 +00:00
|
|
|
|
|
|
|
operations = [
|
2019-11-04 16:55:03 +00:00
|
|
|
migrations.RemoveField(model_name="switchbay", name="members"),
|
2018-04-08 02:01:32 +00:00
|
|
|
migrations.AddField(
|
2019-11-04 16:55:03 +00:00
|
|
|
model_name="switch",
|
|
|
|
name="switchbay",
|
|
|
|
field=models.ForeignKey(
|
|
|
|
blank=True,
|
|
|
|
null=True,
|
|
|
|
on_delete=django.db.models.deletion.SET_NULL,
|
|
|
|
to="topologie.SwitchBay",
|
|
|
|
),
|
2018-04-08 02:01:32 +00:00
|
|
|
),
|
|
|
|
]
|