blob: f11fc91ca7c12d5ce0767175f0b9d5f48e430614 [file] [log] [blame]
Matteo Scandolo7d00d602016-05-12 10:34:57 -07001# -*- coding: utf-8 -*-
2from __future__ import unicode_literals
3
4from django.db import models, migrations
5
6
7class 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 ]