blob: 358c5dc8f313b4746af25fc8748c32b5c4908795 [file] [log] [blame]
Scott Baker4bf45142014-09-15 16:05:39 -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', '0002_omf_friendly_default_false'),
11 ]
12
13 operations = [
14 migrations.CreateModel(
15 name='CassandraService',
16 fields=[
17 ('service_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='core.Service')),
18 ('clusterSize', models.PositiveIntegerField(default=1)),
19 ('replicationFactor', models.PositiveIntegerField(default=1)),
20 ],
21 options={
22 'verbose_name': 'Cassandra Service',
23 },
24 bases=('core.service', models.Model),
25 ),
26 ]