blob: cffe2f6a60c7c06992f7e6420e612433f306aed0 [file] [log] [blame]
Scott Baker95c3dfb2019-03-07 11:24:11 -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-07 19:49
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 ('kubernetes', '0003_auto_20190305_0235'),
27 ]
28
29 operations = [
30 migrations.AlterField(
31 model_name='kubernetesconfigvolumemount',
32 name='backend_status',
33 field=models.CharField(default=b'Provisioning in progress', max_length=1024),
34 ),
35 migrations.AlterField(
36 model_name='kubernetesconfigvolumemount',
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='kubernetesconfigvolumemount',
42 name='mount_path',
43 field=models.CharField(help_text=b'Path to mount secret', max_length=1024),
44 ),
45 migrations.AlterField(
46 model_name='kubernetesconfigvolumemount',
47 name='updated',
48 field=models.DateTimeField(default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'),
49 ),
50 migrations.AlterField(
51 model_name='kubernetesdata',
52 name='backend_status',
53 field=models.CharField(default=b'Provisioning in progress', max_length=1024),
54 ),
55 migrations.AlterField(
56 model_name='kubernetesdata',
57 name='leaf_model_name',
58 field=models.CharField(help_text=b'The most specialized model in this chain of inheritance, often defined by a service developer', max_length=1024),
59 ),
60 migrations.AlterField(
61 model_name='kubernetesdata',
62 name='name',
63 field=models.CharField(help_text=b'Name of this data store', max_length=256),
64 ),
65 migrations.AlterField(
66 model_name='kubernetesdata',
67 name='updated',
68 field=models.DateTimeField(default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'),
69 ),
70 migrations.AlterField(
71 model_name='kubernetessecretvolumemount',
72 name='backend_status',
73 field=models.CharField(default=b'Provisioning in progress', max_length=1024),
74 ),
75 migrations.AlterField(
76 model_name='kubernetessecretvolumemount',
77 name='leaf_model_name',
78 field=models.CharField(help_text=b'The most specialized model in this chain of inheritance, often defined by a service developer', max_length=1024),
79 ),
80 migrations.AlterField(
81 model_name='kubernetessecretvolumemount',
82 name='mount_path',
83 field=models.CharField(help_text=b'Path to mount secret', max_length=1024),
84 ),
85 migrations.AlterField(
86 model_name='kubernetessecretvolumemount',
87 name='updated',
88 field=models.DateTimeField(default=django.utils.timezone.now, help_text=b'Time this model was changed by a non-synchronizer'),
89 ),
90 ]