blob: 8076246a5dd59325ccde062c7529c0861e3340aa [file] [log] [blame]
Scott Bakerdf659772019-03-12 15:42:07 -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:41
17from __future__ import unicode_literals
18
19import core.models.xosbase_header
20from django.db import migrations, models
21import django.utils.timezone
22
23
24class Migration(migrations.Migration):
25
26 dependencies = [
27 ('fabric-crossconnect', '0002_auto_20190305_0239'),
28 ]
29
30 operations = [
31 migrations.AlterField(
32 model_name='bngportmapping_decl',
33 name='backend_status',
34 field=models.CharField(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(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(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(help_text=b'Datapath id of switch where crossconnect will be installed', max_length=256),
50 ),
51 ]