Jan Dittberner
4af1a39ca4
- update dependencies - fix deprecation warnings - fix tests - skip some tests that need more work - reformat changed code with isort and black
27 lines
729 B
Python
27 lines
729 B
Python
# -*- coding: utf-8 -*-
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("managemails", "0001_initial"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name="mailaddress",
|
|
options={
|
|
"ordering": ["domain", "localpart"],
|
|
"verbose_name": "Mail address",
|
|
"verbose_name_plural": "Mail addresses",
|
|
},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name="mailbox",
|
|
options={
|
|
"ordering": ["osuser", "username"],
|
|
"verbose_name": "Mailbox",
|
|
"verbose_name_plural": "Mailboxes",
|
|
},
|
|
),
|
|
]
|