2015-01-17 14:04:46 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2023-02-18 22:46:48 +01:00
|
|
|
from django.db import migrations
|
2015-01-17 14:04:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
2023-02-18 22:46:48 +01:00
|
|
|
("managemails", "0001_initial"),
|
2015-01-17 14:04:46 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterModelOptions(
|
2023-02-18 22:46:48 +01:00
|
|
|
name="mailaddress",
|
|
|
|
options={
|
|
|
|
"ordering": ["domain", "localpart"],
|
|
|
|
"verbose_name": "Mail address",
|
|
|
|
"verbose_name_plural": "Mail addresses",
|
|
|
|
},
|
2015-01-17 14:04:46 +01:00
|
|
|
),
|
|
|
|
migrations.AlterModelOptions(
|
2023-02-18 22:46:48 +01:00
|
|
|
name="mailbox",
|
|
|
|
options={
|
|
|
|
"ordering": ["osuser", "username"],
|
|
|
|
"verbose_name": "Mailbox",
|
|
|
|
"verbose_name_plural": "Mailboxes",
|
|
|
|
},
|
2015-01-17 14:04:46 +01:00
|
|
|
),
|
|
|
|
]
|