Jan Dittberner
6cebd80c89
This commit is a rough port to Django 2.1, Python 3 and a Docker based local development setup. Tests fail/error but migrations and the web frontend are already runnable. Task queue functionality is untested and translations seem to have trouble.
21 lines
599 B
Python
21 lines
599 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
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', on_delete=models.CASCADE),
|
|
preserve_default=True,
|
|
),
|
|
]
|