From b08e3efb9dd2522d827cad3de4fea3bb7169d8a7 Mon Sep 17 00:00:00 2001 From: aristides Date: Fri, 20 May 2022 21:39:27 +0000 Subject: [PATCH] fixes bug#24537 qua: dev: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@112307 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20220520_1819__mantis24537.sql | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/db/migration/V20220520_1819__mantis24537.sql diff --git a/src/db/migration/V20220520_1819__mantis24537.sql b/src/db/migration/V20220520_1819__mantis24537.sql new file mode 100644 index 000000000..98b62fcdf --- /dev/null +++ b/src/db/migration/V20220520_1819__mantis24537.sql @@ -0,0 +1,6 @@ +declare +begin + execute immediate 'INSERT INTO TIPO_VENTA (TIPOVENTA_ID, DESCTIPOVENTA, ACTIVO, FECMODIF, USUARIO_ID) VALUES (16, ''TPV RESERVACION INTERNET'', 1, SYSDATE, 1)'; + exception when others then null; +end; +/