blob: b57f4a5750e61b5e78246110c160dff3f9e50f1a [file] [log] [blame]
Scott Baker8ace7562019-03-05 09:42:30 -08001# 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-05 17:42
17from __future__ import unicode_literals
18
19from django.db import migrations, models
20import django.utils.timezone
21
22
23class Migration(migrations.Migration):
24
25 dependencies = [
26 ('volt', '0001_initial'),
27 ]
28
29 operations = [
30 migrations.AlterField(
31 model_name='oltdevice_decl',
32 name='backend_status',
33 field=models.CharField(blank=True, default=b'Provisioning in progress', max_length=1024),
34 ),
35 migrations.AlterField(
36 model_name='oltdevice_decl',
37 name='device_type',
38 field=models.CharField(blank=True, default=b'openolt', help_text=b'Phyiscal Device Type', max_length=254),
39 ),
40 migrations.AlterField(
41 model_name='oltdevice_decl',
42 name='driver',
43 field=models.TextField(blank=True, default=b'voltha', help_text=b'DEPRECATED'),
44 ),
45 migrations.AlterField(
46 model_name='oltdevice_decl',
47 name='leaf_model_name',
48 field=models.CharField(blank=True, help_text=b'The most specialized model in this chain of inheritance, often defined by a service developer', max_length=1024),
49 ),
50 migrations.AlterField(
51 model_name='oltdevice_decl',
52 name='updated',
53 field=models.DateTimeField(blank=True, default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'),
54 ),
55 migrations.AlterField(
56 model_name='oltdevice_decl',
57 name='uplink',
58 field=models.TextField(blank=True, help_text=b'uplink port, exposed via sadis'),
59 ),
60 migrations.AlterField(
61 model_name='onudevice_decl',
62 name='backend_status',
63 field=models.CharField(blank=True, default=b'Provisioning in progress', max_length=1024),
64 ),
65 migrations.AlterField(
66 model_name='onudevice_decl',
67 name='device_type',
68 field=models.CharField(blank=True, default=b'asfvolt16_olt', help_text=b'Device Type', max_length=254),
69 ),
70 migrations.AlterField(
71 model_name='onudevice_decl',
72 name='leaf_model_name',
73 field=models.CharField(blank=True, help_text=b'The most specialized model in this chain of inheritance, often defined by a service developer', max_length=1024),
74 ),
75 migrations.AlterField(
76 model_name='onudevice_decl',
77 name='serial_number',
78 field=models.CharField(blank=True, help_text=b'Serial number of ONU Device', max_length=254, unique=True),
79 ),
80 migrations.AlterField(
81 model_name='onudevice_decl',
82 name='updated',
83 field=models.DateTimeField(blank=True, default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'),
84 ),
85 migrations.AlterField(
86 model_name='onudevice_decl',
87 name='vendor',
88 field=models.CharField(blank=True, help_text=b'Vendor of ONU Device', max_length=254),
89 ),
90 migrations.AlterField(
91 model_name='portbase_decl',
92 name='backend_status',
93 field=models.CharField(blank=True, default=b'Provisioning in progress', max_length=1024),
94 ),
95 migrations.AlterField(
96 model_name='portbase_decl',
97 name='leaf_model_name',
98 field=models.CharField(blank=True, help_text=b'The most specialized model in this chain of inheritance, often defined by a service developer', max_length=1024),
99 ),
100 migrations.AlterField(
101 model_name='portbase_decl',
102 name='name',
103 field=models.TextField(blank=True, db_index=True, help_text=b'Human-readable name of port'),
104 ),
105 migrations.AlterField(
106 model_name='portbase_decl',
107 name='updated',
108 field=models.DateTimeField(blank=True, default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'),
109 ),
110 migrations.AlterField(
111 model_name='voltservice_decl',
112 name='onos_voltha_pass',
113 field=models.CharField(blank=True, default=b'rocks', help_text=b'The ONOS Voltha password. By default rocks', max_length=254),
114 ),
115 migrations.AlterField(
116 model_name='voltservice_decl',
117 name='onos_voltha_url',
118 field=models.CharField(blank=True, default=b'onos-voltha-ui.voltha.svc.cluster.local', help_text=b'The ONOS Voltha address. By default onos-voltha-ui.voltha.svc.cluster.local', max_length=254),
119 ),
120 migrations.AlterField(
121 model_name='voltservice_decl',
122 name='onos_voltha_user',
123 field=models.CharField(blank=True, default=b'onos', help_text=b'The ONOS Voltha username. By default sdn', max_length=254),
124 ),
125 migrations.AlterField(
126 model_name='voltservice_decl',
127 name='voltha_pass',
128 field=models.CharField(blank=True, default=b'admin', help_text=b'The Voltha password. By default admin', max_length=254),
129 ),
130 migrations.AlterField(
131 model_name='voltservice_decl',
132 name='voltha_url',
133 field=models.CharField(blank=True, default=b'voltha.voltha.svc.cluster.local', help_text=b'The Voltha API address. By default voltha.voltha.svc.cluster.local', max_length=254),
134 ),
135 migrations.AlterField(
136 model_name='voltservice_decl',
137 name='voltha_user',
138 field=models.CharField(blank=True, default=b'voltha', help_text=b'The Voltha username. By default voltha', max_length=254),
139 ),
140 ]