snapshot: preserve bilingual email template phase

This commit is contained in:
Md Bayazid Bostame
2026-03-24 12:37:35 +01:00
parent 4d3c7bdf6e
commit ec00ae8b2e
9 changed files with 275 additions and 18 deletions

View File

@@ -0,0 +1,43 @@
# Generated by Django 5.1.5 on 2026-03-24 11:32
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('workflows', '0029_formfieldconfig_help_text_override_en_and_more'),
]
operations = [
migrations.AddField(
model_name='notificationrule',
name='custom_body_en',
field=models.TextField(blank=True),
),
migrations.AddField(
model_name='notificationrule',
name='custom_subject_en',
field=models.CharField(blank=True, max_length=255),
),
migrations.AddField(
model_name='notificationtemplate',
name='body_template_en',
field=models.TextField(blank=True),
),
migrations.AddField(
model_name='notificationtemplate',
name='subject_template_en',
field=models.CharField(blank=True, max_length=255),
),
migrations.AddField(
model_name='offboardingrequest',
name='preferred_language',
field=models.CharField(blank=True, default='de', max_length=10),
),
migrations.AddField(
model_name='onboardingrequest',
name='preferred_language',
field=models.CharField(blank=True, default='de', max_length=10),
),
]