diff --git a/db_scripts/diff/15440.down b/db_scripts/diff/15440.down new file mode 100644 index 00000000..35a635db --- /dev/null +++ b/db_scripts/diff/15440.down @@ -0,0 +1,8 @@ +SET autocommit=0; +USE billing; + +UPDATE email_templates set from_email = 'Sipwise NGCP FaxServer ' + WHERE name = 'fax_receive_ok_default_email' + AND reseller_id IS NULL; + +COMMIT; diff --git a/db_scripts/diff/15440.up b/db_scripts/diff/15440.up new file mode 100644 index 00000000..d24b66c8 --- /dev/null +++ b/db_scripts/diff/15440.up @@ -0,0 +1,8 @@ +SET autocommit=0; +USE billing; + +UPDATE email_templates set from_email = '[% mail_from %]' + WHERE name = 'fax_receive_ok_default_email' + AND reseller_id IS NULL; + +COMMIT;