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.
24 lines
721 B
Python
24 lines
721 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('hostingpackages', '0002_auto_20150118_1319'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customermailboxoption',
|
|
name='template',
|
|
field=models.ForeignKey(
|
|
verbose_name='mailbox option template',
|
|
to='hostingpackages.MailboxOption',
|
|
help_text='The mailbox option template that this mailbox '
|
|
'option is based on',
|
|
on_delete=models.CASCADE),
|
|
preserve_default=True,
|
|
),
|
|
]
|