From fbfe7079db024cac9f4b89b7d5bddc21873a47ce Mon Sep 17 00:00:00 2001 From: walace Date: Wed, 24 Jun 2020 14:27:50 +0000 Subject: [PATCH] =?UTF-8?q?fixes=20bug#19601=20qua:=20dev:=20Inserido=20o?= =?UTF-8?q?=20update=20corrigindo=20para=20pr=C3=B3ximos=20clientes.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@102200 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20220624_1120__mantis19601.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20220624_1120__mantis19601.sql diff --git a/src/db/migration/V20220624_1120__mantis19601.sql b/src/db/migration/V20220624_1120__mantis19601.sql new file mode 100644 index 000000000..90839f8e2 --- /dev/null +++ b/src/db/migration/V20220624_1120__mantis19601.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'update custom set tipo = ''1'' where chave = ''MODCLI_ImprimeComprovanteCartaoImpressoraTermica'''; + exception when object_exists then null; +end; \ No newline at end of file