blob: 863e323baf6e09cdd020ff197da49978c1024cdd [file] [log] [blame]
Scott Baker3ff47002019-04-10 10:29:37 -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-10 17:50
17from __future__ import unicode_literals
18
19from django.db import migrations, models
20
21
22class Migration(migrations.Migration):
23
24 dependencies = [
25 ('tt-workflow-driver', '0001_initial'),
26 ]
27
28 operations = [
29 migrations.AlterField(
30 model_name='ttworkflowdriverserviceinstance',
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='ttworkflowdriverserviceinstance',
36 name='of_dpid',
37 field=models.CharField(help_text=b'OLT Openflow ID', max_length=256),
38 ),
39 migrations.AlterField(
40 model_name='ttworkflowdriverserviceinstance',
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='ttworkflowdriverserviceinstance',
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='ttworkflowdriverserviceinstance',
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='ttworkflowdriverwhitelistentry',
56 name='serial_number',
57 field=models.CharField(help_text=b'ONU Serial Number', max_length=256),
58 ),
59 ]