blob: 00279f1e9c2fc8420956ac4db864ca82728b7e51 [file] [log] [blame]
Matteo Scandolo2df79302016-02-29 16:27:58 -08001# -*- 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='HelloWorldServiceComplete',
16 fields=[
17 ],
18 options={
19 'verbose_name': 'Hello World Service',
20 'proxy': True,
21 },
22 bases=('core.service',),
23 ),
24 migrations.CreateModel(
25 name='HelloWorldTenantComplete',
26 fields=[
27 ],
28 options={
29 'verbose_name': 'Hello World Tenant',
30 'proxy': True,
31 },
32 bases=('core.tenantwithcontainer',),
33 ),
34 ]