diff --git a/src/db/migration/V20221005_1649__al1331.sql b/src/db/migration/V20221005_1649__al1331.sql new file mode 100644 index 000000000..599751890 --- /dev/null +++ b/src/db/migration/V20221005_1649__al1331.sql @@ -0,0 +1,6 @@ +declare +begin + execute immediate 'UPDATE CONSTANTE SET VALORCONSTANTE = ''/transactions/void'' where constante_id = (select constante_id from constante where nombconstante like ''MP05_PATH_ESTORNO_MOBIPIX'') '; + exception when others then null; +end; +/ \ No newline at end of file diff --git a/src/db/postgresql/migration/V20221005_1649__al1331.sql b/src/db/postgresql/migration/V20221005_1649__al1331.sql new file mode 100644 index 000000000..84ae43a38 --- /dev/null +++ b/src/db/postgresql/migration/V20221005_1649__al1331.sql @@ -0,0 +1,5 @@ +DO $$ +BEGIN + UPDATE CONSTANTE SET VALORCONSTANTE = '/transactions/void' where constante_id = (select constante_id from constante where nombconstante like 'MP05_PATH_ESTORNO_MOBIPIX'); +END +$$; \ No newline at end of file