blob: 540eccb6832543ccec3b6b0540c8d5d20193dc83 [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='VTRService',
16 fields=[
17 ],
18 options={
19 'verbose_name': 'vTR Service',
20 'proxy': True,
21 },
22 bases=('core.service',),
23 ),
24 migrations.CreateModel(
25 name='VTRTenant',
26 fields=[
27 ],
28 options={
29 'proxy': True,
30 },
31 bases=('core.tenant',),
32 ),
33 ]