19 lines
378 B
Python
19 lines
378 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('hostingpackages', '0001_squashed_0005_auto_20150118_1303'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name='hostingoption',
|
||
|
options={},
|
||
|
),
|
||
|
]
|