blob: 97eda68fd5e4c26d6349e98d67caeabe662f15a4 [file] [log] [blame]
Himanshu Bhandarid43b31f2020-04-22 15:53:56 +05301# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# -*- coding: utf-8 -*-
16# Generated by Django 1.11.29 on 2020-04-22 08:16
17from __future__ import unicode_literals
18
19from django.db import migrations, models
20import django.db.models.deletion
21
22
23class Migration(migrations.Migration):
24
25 dependencies = [
26 ('fabric', '0007_switch_pipeconf'),
27 ]
28
29 operations = [
30 migrations.AddField(
31 model_name='switch',
32 name='fabric',
33 field=models.ForeignKey(blank=True, help_text=b'The Fabric Service which owns this switch', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='switch', to='fabric.FabricService'),
34 ),
35 ]