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.
27 lines
762 B
Python
27 lines
762 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('managemails', '0003_auto_20150124_2029'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='mailaddress',
|
|
name='domain',
|
|
field=models.ForeignKey(
|
|
verbose_name='domain', to='domains.MailDomain',
|
|
on_delete=models.CASCADE),
|
|
preserve_default=True,
|
|
),
|
|
migrations.AlterField(
|
|
model_name='mailaddress',
|
|
name='localpart',
|
|
field=models.CharField(max_length=128, verbose_name='local part'),
|
|
preserve_default=True,
|
|
),
|
|
]
|