blob: 61959233ba3fa3cc992ec1d3f9354ae2886e7024 [file] [log] [blame]
Matteo Scandoloa4a279a2019-03-14 15:56:22 -07001# 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.11 on 2019-03-15 20:28
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', '0005_migrate_bandwidth_profiles'),
27 ]
28
29 operations = [
30 migrations.AlterField(
31 model_name='rcordsubscriber_decl',
32 name='downstream_bps',
33 field=models.ForeignKey(help_text=b'The subscriber the IP address belongs to', 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'The subscriber the IP address belongs to', on_delete=django.db.models.deletion.CASCADE, related_name='us_subscriber', to='rcord.BandwidthProfile_decl'),
39 ),
40 ]