blob: b948e4ec2f912df9715ca036298d7a77c8419f35 [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='NagiosService',
fields=[
('service_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='core.Service')),
],
options={
'verbose_name': 'Nagios Service',
},
bases=('core.service', models.Model),
),
]