Jan Dittberner
9f63fbbb5d
- implement models for hosting packages, hosting options and customer specific variants - implement admin interface - add documentation
18 lines
378 B
Python
18 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={},
|
|
),
|
|
]
|