Matteo Scandolo | eb3487c | 2017-08-08 13:05:26 -0700 | [diff] [blame] | 1 | |
| 2 | # Copyright 2017-present Open Networking Foundation |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | |
Pingping Lin | d28ab98 | 2016-08-29 18:42:52 +0000 | [diff] [blame] | 17 | # -*- coding: utf-8 -*- |
| 18 | from __future__ import unicode_literals |
| 19 | |
| 20 | from django.db import models, migrations |
| 21 | |
| 22 | |
| 23 | class Migration(migrations.Migration): |
| 24 | |
| 25 | dependencies = [ |
| 26 | ('core', '0001_initial'), |
| 27 | ] |
| 28 | |
| 29 | operations = [ |
| 30 | migrations.CreateModel( |
| 31 | name='MCORDService', |
| 32 | fields=[ |
| 33 | ], |
| 34 | options={ |
| 35 | 'verbose_name': 'MCORD Service', |
| 36 | 'proxy': True, |
| 37 | }, |
| 38 | bases=('core.service',), |
| 39 | ), |
| 40 | migrations.CreateModel( |
| 41 | name='VBBUComponent', |
| 42 | fields=[ |
| 43 | ], |
| 44 | options={ |
| 45 | 'verbose_name': 'VBBU MCORD Service Component', |
| 46 | 'proxy': True, |
| 47 | }, |
| 48 | bases=('core.tenantwithcontainer',), |
| 49 | ), |
| 50 | migrations.CreateModel( |
| 51 | name='VPGWCComponent', |
| 52 | fields=[ |
| 53 | ], |
| 54 | options={ |
| 55 | 'verbose_name': 'VPGWC MCORD Service Component', |
| 56 | 'proxy': True, |
| 57 | }, |
| 58 | bases=('core.tenantwithcontainer',), |
| 59 | ), |
| 60 | ] |