Scott Baker | 06f77ad | 2019-03-08 13:37:54 -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-08 21:36 |
| 17 | from __future__ import unicode_literals |
| 18 | |
| 19 | from django.db import migrations, models |
| 20 | import django.utils.timezone |
| 21 | |
| 22 | |
| 23 | class Migration(migrations.Migration): |
| 24 | |
| 25 | dependencies = [ |
| 26 | ('simpleexampleservice', '0002_auto_20190305_0240'), |
| 27 | ] |
| 28 | |
| 29 | operations = [ |
| 30 | migrations.AlterField( |
| 31 | model_name='colornew', |
| 32 | name='backend_status', |
| 33 | field=models.CharField(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(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(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(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(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(default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'), |
| 59 | ), |
| 60 | ] |