Jan Dittberner
9f63fbbb5d
- implement models for hosting packages, hosting options and customer specific variants - implement admin interface - add documentation
20 lines
541 B
Python
20 lines
541 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('hostingpackages', '0004_customerhostingpackage_osuser'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customerhostingpackage',
|
|
name='osuser',
|
|
field=models.OneToOneField(null=True, blank=True, to='osusers.User', verbose_name='Operating system user'),
|
|
preserve_default=True,
|
|
),
|
|
]
|