blob: f11fc91ca7c12d5ce0767175f0b9d5f48e430614 [file] [log] [blame]
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('core', '0001_initial'),
]
operations = [
migrations.CreateModel(
name='VRouterService',
fields=[
],
options={
'verbose_name': 'vRouter Service',
'proxy': True,
},
bases=('core.service',),
),
migrations.CreateModel(
name='VRouterTenant',
fields=[
],
options={
'proxy': True,
},
bases=('core.tenant',),
),
]