Resolved conflict
This commit is contained in:
@@ -2683,4 +2683,14 @@
|
||||
dbms="postgresql"
|
||||
path="db/dump/create_application_form_view.sql"/>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="28-04-2025_PK_154315" author="Piyush Kag">
|
||||
<sqlFile dbms="postgresql"
|
||||
path="db/dump/update_json_template_for_notification_28_04_2025.sql"/>
|
||||
</changeSet>
|
||||
|
||||
<changeSet id="28-04-2025_PK_163615" author="Piyush Kag">
|
||||
<sqlFile dbms="postgresql"
|
||||
path="db/dump/update_system_email_template_28_04_2025.sql"/>
|
||||
</changeSet>
|
||||
</databaseChangeLog>
|
||||
|
||||
@@ -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