Jan Dittberner
4af1a39ca4
- update dependencies - fix deprecation warnings - fix tests - skip some tests that need more work - reformat changed code with isort and black
25 lines
718 B
Python
25 lines
718 B
Python
# -*- coding: utf-8 -*-
|
|
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,
|
|
),
|
|
]
|