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.
29 lines
894 B
Python
29 lines
894 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('managemails', '0002_auto_20150117_1238'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='mailaddressmailbox',
|
|
name='mailaddress',
|
|
field=models.OneToOneField(
|
|
primary_key=True, serialize=False, to='managemails.MailAddress',
|
|
verbose_name='mailaddress', on_delete=models.CASCADE),
|
|
preserve_default=True,
|
|
),
|
|
migrations.AlterField(
|
|
model_name='mailaddressmailbox',
|
|
name='mailbox',
|
|
field=models.ForeignKey(
|
|
verbose_name='mailbox', to='managemails.Mailbox',
|
|
on_delete=models.CASCADE),
|
|
preserve_default=True,
|
|
),
|
|
]
|