blob: 1dacd7e09aa2307b377b57dcf20280ec4afd9d04 [file] [log] [blame]
Scott Bakere93ad342019-03-12 15:40: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.11 on 2019-03-12 22:39
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 ('fabric', '0002_auto_20190305_0238'),
27 ]
28
29 operations = [
30 migrations.AlterField(
31 model_name='fabricipaddress',
32 name='backend_status',
33 field=models.CharField(default=b'Provisioning in progress', max_length=1024),
34 ),
35 migrations.AlterField(
36 model_name='fabricipaddress',
37 name='ip',
38 field=models.CharField(help_text=b'The unique IP address (either IPv4 or IPv6 / netmask)', max_length=52),
39 ),
40 migrations.AlterField(
41 model_name='fabricipaddress',
42 name='leaf_model_name',
43 field=models.CharField(help_text=b'The most specialized model in this chain of inheritance, often defined by a service developer', max_length=1024),
44 ),
45 migrations.AlterField(
46 model_name='fabricipaddress',
47 name='updated',
48 field=models.DateTimeField(default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'),
49 ),
50 migrations.AlterField(
51 model_name='nodetoswitchport',
52 name='backend_status',
53 field=models.CharField(default=b'Provisioning in progress', max_length=1024),
54 ),
55 migrations.AlterField(
56 model_name='nodetoswitchport',
57 name='leaf_model_name',
58 field=models.CharField(help_text=b'The most specialized model in this chain of inheritance, often defined by a service developer', max_length=1024),
59 ),
60 migrations.AlterField(
61 model_name='nodetoswitchport',
62 name='updated',
63 field=models.DateTimeField(default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'),
64 ),
65 migrations.AlterField(
66 model_name='portinterface',
67 name='backend_status',
68 field=models.CharField(default=b'Provisioning in progress', max_length=1024),
69 ),
70 migrations.AlterField(
71 model_name='portinterface',
72 name='leaf_model_name',
73 field=models.CharField(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='portinterface',
77 name='name',
78 field=models.CharField(help_text=b'The unique name of the fabric switch port', max_length=254),
79 ),
80 migrations.AlterField(
81 model_name='portinterface',
82 name='updated',
83 field=models.DateTimeField(default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'),
84 ),
85 migrations.AlterField(
86 model_name='switch',
87 name='backend_status',
88 field=models.CharField(default=b'Provisioning in progress', max_length=1024),
89 ),
90 migrations.AlterField(
91 model_name='switch',
92 name='driver',
93 field=models.CharField(default=b'ofdpa3', help_text=b'The driver used by the SDN controller', max_length=254),
94 ),
95 migrations.AlterField(
96 model_name='switch',
97 name='ipv4Loopback',
98 field=models.CharField(help_text=b'Fabric loopback interface', max_length=17),
99 ),
100 migrations.AlterField(
101 model_name='switch',
102 name='leaf_model_name',
103 field=models.CharField(help_text=b'The most specialized model in this chain of inheritance, often defined by a service developer', max_length=1024),
104 ),
105 migrations.AlterField(
106 model_name='switch',
107 name='name',
108 field=models.CharField(help_text=b'The unique name of the fabric switch', max_length=254),
109 ),
110 migrations.AlterField(
111 model_name='switch',
112 name='ofId',
113 field=models.CharField(help_text=b'The unique OpenFlow ID of the fabric switch', max_length=19),
114 ),
115 migrations.AlterField(
116 model_name='switch',
117 name='routerMac',
118 field=models.CharField(help_text=b'MAC address of the fabric switch used for all interfaces', max_length=17),
119 ),
120 migrations.AlterField(
121 model_name='switch',
122 name='updated',
123 field=models.DateTimeField(default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'),
124 ),
125 migrations.AlterField(
126 model_name='switchport',
127 name='backend_status',
128 field=models.CharField(default=b'Provisioning in progress', max_length=1024),
129 ),
130 migrations.AlterField(
131 model_name='switchport',
132 name='leaf_model_name',
133 field=models.CharField(help_text=b'The most specialized model in this chain of inheritance, often defined by a service developer', max_length=1024),
134 ),
135 migrations.AlterField(
136 model_name='switchport',
137 name='updated',
138 field=models.DateTimeField(default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'),
139 ),
140 ]