blob: ee947fc97a30981097196e0504a68d66fea1426e [file] [log] [blame]
Himanshu Bhandari995d3252020-06-03 18:41:13 +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-06-03 12:56
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 ('rcord', '0013_auto_20190905_1220'),
27 ]
28
29 operations = [
30 migrations.AlterField(
31 model_name='rcordsubscriber_decl',
32 name='downstream_bps',
33 field=models.ForeignKey(help_text=b'Downstream Bandwidth Profile for a subscriber', on_delete=django.db.models.deletion.CASCADE, related_name='ds_subscriber', to='rcord.BandwidthProfile_decl'),
34 ),
35 migrations.AlterField(
36 model_name='rcordsubscriber_decl',
37 name='upstream_bps',
38 field=models.ForeignKey(help_text=b'Upstream Bandwidth Profile for a subscriber', on_delete=django.db.models.deletion.CASCADE, related_name='us_subscriber', to='rcord.BandwidthProfile_decl'),
39 ),
40 ]