blob: 677d3e5275a849b5f43e95a45565e0a0106933e3 [file] [log] [blame]
Himanshu Bhandari51d71c12020-03-17 07:47:59 +00001# 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-03-13 10:25
17from __future__ import unicode_literals
18
19import core.models.xosbase_header
20from django.db import migrations, models
21import django.db.models.deletion
22
23
24class Migration(migrations.Migration):
25
26 dependencies = [
27 ('core', '0012_backupoperation_decl_uuid'),
28 ]
29
30 operations = [
31 migrations.AddField(
32 model_name='service_decl',
33 name='site',
34 field=models.ForeignKey(blank=True, help_text=b'The Site this Service belongs to', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='service', to='core.Site'),
35 ),
36 ]
37