Done ticket GEPAFINBE-211
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
UPDATE notification_type
|
||||
SET
|
||||
title = regexp_replace(title, 'emendamento', 'soccorso istruttorio', 'gi'),
|
||||
json_template = regexp_replace(json_template, 'emendamento', 'soccorso istruttorio', 'gi')
|
||||
WHERE
|
||||
title ~* 'emendamento'
|
||||
OR json_template ~* 'emendamento';
|
||||
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
UPDATE gepafin_schema.system_email_template
|
||||
SET
|
||||
html_content = regexp_replace(html_content, 'emendamento', 'Soccorso Istruttorio', 'gi'),
|
||||
subject = regexp_replace(subject, 'emendamento', 'Soccorso Istruttorio', 'gi')
|
||||
WHERE
|
||||
html_content ~* 'emendamento'
|
||||
OR subject ~* 'emendamento';
|
||||
Reference in New Issue
Block a user