Merge pull request #1118 from Tecnativa/15.0-fix-old-sintaxis-jinja2-for-jinja3

[15.0][IMP] mail_notification_custom_subject: add migration script for convert syntaxis of jinja2 to jinja3
pull/1140/head
Pedro M. Baeza 2023-04-03 19:02:43 +02:00 committed by GitHub
commit a30cd5b14f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# pylint: disable=C7902
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from openupgradelib import openupgrade
@openupgrade.migrate()
def migrate(env, version):
env.cr.execute(
"""
UPDATE mail_message_custom_subject
SET subject_template=REPLACE(
REPLACE(
subject_template,
'${',
'{{'),
'}',
'}}'
)
"""
)