2015-01-18 15:58:58 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-11-19 23:28:40 +01:00
|
|
|
from django.db import migrations, models
|
2015-01-18 15:58:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
2023-02-18 22:46:48 +01:00
|
|
|
("hostingpackages", "0002_auto_20150118_1319"),
|
2015-01-18 15:58:58 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AlterField(
|
2023-02-18 22:46:48 +01:00
|
|
|
model_name="customermailboxoption",
|
|
|
|
name="template",
|
2018-11-19 23:28:40 +01:00
|
|
|
field=models.ForeignKey(
|
2023-02-18 22:46:48 +01:00
|
|
|
verbose_name="mailbox option template",
|
|
|
|
to="hostingpackages.MailboxOption",
|
|
|
|
help_text="The mailbox option template that this mailbox "
|
|
|
|
"option is based on",
|
|
|
|
on_delete=models.CASCADE,
|
|
|
|
),
|
2015-01-18 15:58:58 +01:00
|
|
|
preserve_default=True,
|
|
|
|
),
|
|
|
|
]
|