Add suboperation to lcm op occ
[vfc/gvnfm/vnflcm.git] / lcm / lcm / pub / database / migrations / 0002_vnflcmopoccmodel_sub_operation.py
1 # Copyright 2019 ZTE Corporation.
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 # Generated by Django 1.11.9 on 2019-04-28 07:45
15 from __future__ import unicode_literals
16
17 from django.db import migrations, models
18
19
20 class Migration(migrations.Migration):
21
22     dependencies = [
23         ('database', '0001_initial'),
24     ]
25
26     operations = [
27         migrations.AddField(
28             model_name='vnflcmopoccmodel',
29             name='sub_operation',
30             field=models.CharField(db_column=b'SUBOPERATION', max_length=30, null=True),
31         ),
32     ]