blob: 88a626bb9660289ef8933c20f9fb2b8c82a8ddaa [file] [log] [blame]
Scott Bakerfa330332019-04-09 15:43:11 -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.20 on 2019-04-09 23:04
17from __future__ import unicode_literals
18
19from django.db import migrations, models
20
21
22class Migration(migrations.Migration):
23
24 dependencies = [
25 ('rcord', '0006_bandwidth_profiles_required'),
26 ]
27
28 operations = [
29 migrations.AlterField(
30 model_name='bandwidthprofile_decl',
31 name='name',
32 field=models.CharField(help_text=b'Name of bandwidth profile', max_length=256),
33 ),
34 migrations.AlterField(
35 model_name='rcordipaddress_decl',
36 name='description',
37 field=models.TextField(blank=True, help_text=b'A short description of the IP address', null=True),
38 ),
39 migrations.AlterField(
40 model_name='rcordsubscriber_decl',
41 name='circuit_id',
42 field=models.CharField(blank=True, help_text=b'Option 82 Circuit ID for DHCP relay agent', max_length=256, null=True),
43 ),
44 migrations.AlterField(
45 model_name='rcordsubscriber_decl',
46 name='mac_address',
47 field=models.CharField(blank=True, help_text=b'Subscriber MAC Address', max_length=256, null=True),
48 ),
49 migrations.AlterField(
50 model_name='rcordsubscriber_decl',
51 name='nas_port_id',
52 field=models.CharField(blank=True, help_text=b'NAS Port ID used in Radius to identify physical interface used to authenticate subscriber', max_length=256, null=True),
53 ),
54 migrations.AlterField(
55 model_name='rcordsubscriber_decl',
56 name='onu_device',
57 field=models.CharField(help_text=b'ONUDevice serial number', max_length=256),
58 ),
59 migrations.AlterField(
60 model_name='rcordsubscriber_decl',
61 name='remote_id',
62 field=models.CharField(blank=True, help_text=b'Option 82 Remote ID for DHCP relay agent', max_length=256, null=True),
63 ),
64 ]