blob: 90bf43f38c53f9a6ff0f2021e109033eaea4850c [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='VTNService',
fields=[
],
options={
'verbose_name': 'VTN Service',
'proxy': True,
},
bases=('core.service',),
),
]