blob: e7ca65e16eb1e9ec47693c440446fbc8ce403765 [file] [log] [blame]
Tony Mackfea49972014-12-25 19:17:54 -05001# -*- 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='KairosDBService',
16 fields=[
17 ('service_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='core.Service')),
18 ],
19 options={
20 'verbose_name': 'KairosDB Service',
21 },
22 bases=('core.service', models.Model),
23 ),
24 ]