Matteo Scandolo | 7d00d60 | 2016-05-12 10:34:57 -0700 | [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='VRouterService', |
| 16 | fields=[ |
| 17 | ], |
| 18 | options={ |
| 19 | 'verbose_name': 'vRouter Service', |
| 20 | 'proxy': True, |
| 21 | }, |
| 22 | bases=('core.service',), |
| 23 | ), |
| 24 | migrations.CreateModel( |
| 25 | name='VRouterTenant', |
| 26 | fields=[ |
| 27 | ], |
| 28 | options={ |
| 29 | 'proxy': True, |
| 30 | }, |
| 31 | bases=('core.tenant',), |
| 32 | ), |
| 33 | ] |