django-helpdesk/helpdesk/migrations/0035_alter_email_on_ticket_change.py
2025-03-22 15:29:19 -10:00

23 lines
726 B
Python

# Generated by Django 3.1.13 on 2021-08-18 14:30
from django.db import migrations, models
import helpdesk.models
class Migration(migrations.Migration):
dependencies = [
("helpdesk", "0034_create_email_template_for_merged"),
]
operations = [
migrations.AlterField(
model_name="usersettings",
name="email_on_ticket_change",
field=models.BooleanField(
default=helpdesk.models.email_on_ticket_change_default,
help_text="If you're the ticket owner and the ticket is changed via the web by somebody else,do you want to receive an e-mail?",
verbose_name="E-mail me on ticket change?",
),
),
]