Scott Baker | 81a9be2 | 2019-04-09 14:42:26 -0700 | [diff] [blame^] | 1 | # 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 22:31 |
| 17 | from __future__ import unicode_literals |
| 18 | |
| 19 | from django.db import migrations, models |
| 20 | |
| 21 | |
| 22 | class Migration(migrations.Migration): |
| 23 | |
| 24 | dependencies = [ |
| 25 | ('fabric', '0004_auto_20190320_1456'), |
| 26 | ] |
| 27 | |
| 28 | operations = [ |
| 29 | migrations.AlterField( |
| 30 | model_name='fabricipaddress', |
| 31 | name='description', |
| 32 | field=models.CharField(blank=True, help_text=b'A short description of the IP address', max_length=256, null=True), |
| 33 | ), |
| 34 | migrations.AlterField( |
| 35 | model_name='portinterface', |
| 36 | name='name', |
| 37 | field=models.CharField(help_text=b'The unique name of the fabric switch port', max_length=256), |
| 38 | ), |
| 39 | migrations.AlterField( |
| 40 | model_name='switch', |
| 41 | name='driver', |
| 42 | field=models.CharField(default=b'ofdpa3', help_text=b'The driver used by the SDN controller', max_length=256), |
| 43 | ), |
| 44 | migrations.AlterField( |
| 45 | model_name='switch', |
| 46 | name='name', |
| 47 | field=models.CharField(help_text=b'The unique name of the fabric switch', max_length=256), |
| 48 | ), |
| 49 | migrations.AlterField( |
| 50 | model_name='switchport', |
| 51 | name='admin_state', |
| 52 | field=models.CharField(blank=True, choices=[(b'enabled', b'enabled'), (b'disabled', b'disabled')], default=b'enabled', help_text=b'desired administrative state of port', max_length=32, null=True), |
| 53 | ), |
| 54 | migrations.AlterField( |
| 55 | model_name='switchport', |
| 56 | name='oper_status', |
| 57 | field=models.CharField(blank=True, choices=[(b'enabled', b'enabled'), (b'disabled', b'disabled')], help_text=b'operational status of port', max_length=32, null=True), |
| 58 | ), |
| 59 | ] |