blob: da06233cabe5a254c1bf849fc5e65fcdf1188d72 [file] [log] [blame]
Scott Baker8fa93fc2014-11-17 11:13:53 -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', '0005_network_ports'),
11 ]
12
13 operations = [
14 migrations.CreateModel(
15 name='UrlFilterService',
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': 'URL Filter Service',
21 },
22 bases=('core.service', models.Model),
23 ),
24 ]