blob: f572b72d43ad45e21f569608f04aaad056fa2b3f [file] [log] [blame]
Scott Baker59241092019-03-04 23:05:31 -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 07:40
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 ('simpleexampleservice', '0001_initial'),
27 ]
28
29 operations = [
30 migrations.AlterField(
31 model_name='colornew',
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='colornew',
37 name='leaf_model_name',
38 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),
39 ),
40 migrations.AlterField(
41 model_name='colornew',
42 name='updated',
43 field=models.DateTimeField(blank=True, default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'),
44 ),
45 migrations.AlterField(
46 model_name='embeddedimagenew',
47 name='backend_status',
48 field=models.CharField(blank=True, default=b'Provisioning in progress', max_length=1024),
49 ),
50 migrations.AlterField(
51 model_name='embeddedimagenew',
52 name='leaf_model_name',
53 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),
54 ),
55 migrations.AlterField(
56 model_name='embeddedimagenew',
57 name='updated',
58 field=models.DateTimeField(blank=True, default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'),
59 ),
60 migrations.AlterField(
61 model_name='simpleexampleservice',
62 name='service_secret',
63 field=models.TextField(blank=True, help_text=b'Service Secret to place in a file', null=True),
64 ),
65 migrations.AlterField(
66 model_name='simpleexampleserviceinstance',
67 name='tenant_secret',
68 field=models.TextField(blank=True, help_text=b'Tenant Secret to place in a file', null=True),
69 ),
70 ]