Pingping Lin | b7a7d2b | 2016-08-19 18:11:36 +0000 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
| 2 | from __future__ import unicode_literals |
| 3 | |
| 4 | from django.db import models, migrations |
| 5 | |
| 6 | |
| 7 | class Migration(migrations.Migration): |
| 8 | |
| 9 | dependencies = [ |
| 10 | ('core', '0001_initial'), |
| 11 | ] |
| 12 | |
| 13 | operations = [ |
| 14 | migrations.CreateModel( |
| 15 | name='MCORDService', |
| 16 | fields=[ |
| 17 | ], |
| 18 | options={ |
| 19 | 'verbose_name': 'MCORD Service', |
| 20 | 'proxy': True, |
| 21 | }, |
| 22 | bases=('core.service',), |
| 23 | ), |
| 24 | migrations.CreateModel( |
| 25 | name='VBBUComponent', |
| 26 | fields=[ |
| 27 | ], |
| 28 | options={ |
| 29 | 'verbose_name': 'VBBU MCORD Service Component', |
| 30 | 'proxy': True, |
| 31 | }, |
| 32 | bases=('core.tenantwithcontainer',), |
| 33 | ), |
| 34 | migrations.CreateModel( |
| 35 | name='VPGWCComponent', |
| 36 | fields=[ |
| 37 | ], |
| 38 | options={ |
| 39 | 'verbose_name': 'VPGWC MCORD Service Component', |
| 40 | 'proxy': True, |
| 41 | }, |
| 42 | bases=('core.tenantwithcontainer',), |
| 43 | ), |
| 44 | ] |