Scott Baker | c35779a | 2019-03-04 23:03:23 -0800 | [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.11 on 2019-03-05 07:39 |
| 17 | from __future__ import unicode_literals |
| 18 | |
| 19 | import core.models.xosbase_header |
| 20 | from django.db import migrations, models |
| 21 | import django.utils.timezone |
| 22 | |
| 23 | |
| 24 | class Migration(migrations.Migration): |
| 25 | |
| 26 | dependencies = [ |
| 27 | ('fabric-crossconnect', '0001_initial'), |
| 28 | ] |
| 29 | |
| 30 | operations = [ |
| 31 | migrations.AlterField( |
| 32 | model_name='bngportmapping_decl', |
| 33 | name='backend_status', |
| 34 | field=models.CharField(blank=True, default=b'Provisioning in progress', max_length=1024), |
| 35 | ), |
| 36 | migrations.AlterField( |
| 37 | model_name='bngportmapping_decl', |
| 38 | name='leaf_model_name', |
| 39 | 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), |
| 40 | ), |
| 41 | migrations.AlterField( |
| 42 | model_name='bngportmapping_decl', |
| 43 | name='updated', |
| 44 | field=models.DateTimeField(blank=True, default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'), |
| 45 | ), |
| 46 | migrations.AlterField( |
| 47 | model_name='fabriccrossconnectserviceinstance_decl', |
| 48 | name='switch_datapath_id', |
| 49 | field=core.models.xosbase_header.StrippedCharField(blank=True, help_text=b'Datapath id of switch where crossconnect will be installed', max_length=256), |
| 50 | ), |
| 51 | ] |