blob: 18ebf19a7003a39a6586eff3e02aad3a339fd867 [file] [log] [blame]
Scott Baker7fc09ed2019-04-09 14:25:00 -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 21:36
17from __future__ import unicode_literals
18
19from django.db import migrations, models
20
21
22class Migration(migrations.Migration):
23
24 dependencies = [
25 ('att-workflow-driver', '0003_auto_20190312_1833'),
26 ]
27
28 operations = [
29 migrations.AlterField(
30 model_name='attworkflowdriverserviceinstance',
31 name='dhcp_state',
32 field=models.CharField(choices=[(b'AWAITING', b'Awaiting'), (b'DHCPDISCOVER', b'DHCPDISCOVER'), (b'DHCPACK', b'DHCPACK'), (b'DHCPREQUEST', b'DHCPREQUEST')], default=b'AWAITING', max_length=256),
33 ),
34 migrations.AlterField(
35 model_name='attworkflowdriverserviceinstance',
36 name='of_dpid',
37 field=models.CharField(help_text=b'OLT Openflow ID', max_length=256),
38 ),
39 migrations.AlterField(
40 model_name='attworkflowdriverserviceinstance',
41 name='onu_state',
42 field=models.CharField(choices=[(b'AWAITING', b'Awaiting'), (b'ENABLED', b'Enabled'), (b'DISABLED', b'Disabled')], default=b'AWAITING', help_text=b'ONU administrative state', max_length=256),
43 ),
44 migrations.AlterField(
45 model_name='attworkflowdriverserviceinstance',
46 name='serial_number',
47 field=models.CharField(help_text=b'Serial number of ONU', max_length=256, unique=True),
48 ),
49 migrations.AlterField(
50 model_name='attworkflowdriverserviceinstance',
51 name='status_message',
52 field=models.CharField(blank=True, default=b'', help_text=b'Status text of current state machine state', max_length=256, null=True),
53 ),
54 migrations.AlterField(
55 model_name='attworkflowdriverwhitelistentry',
56 name='serial_number',
57 field=models.CharField(help_text=b'ONU Serial Number', max_length=256),
58 ),
59 ]