From 8e91d57dd8cc221556758310252d8baa25255f06 Mon Sep 17 00:00:00 2001 From: valdevir Date: Mon, 8 Jun 2020 19:33:24 +0000 Subject: [PATCH] =?UTF-8?q?fixes=20bug#17888=20qua:=20dev:Thiago=20Clement?= =?UTF-8?q?e=20Adicionado=20par=C3=A2metro=20de=20configura=C3=A7=C3=A3o?= =?UTF-8?q?=20para=20impress=C3=A3o=20de=20segunda=20via=20de=20fechamento?= =?UTF-8?q?=20de=20caixa?= 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@102019 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20200608_0930__mantis17888.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/db/migration/V20200608_0930__mantis17888.sql diff --git a/src/db/migration/V20200608_0930__mantis17888.sql b/src/db/migration/V20200608_0930__mantis17888.sql new file mode 100644 index 000000000..76cb24133 --- /dev/null +++ b/src/db/migration/V20200608_0930__mantis17888.sql @@ -0,0 +1,16 @@ +declare + object_exists exception; + except_01451 exception; + except_01442 exception; + + pragma exception_init (object_exists , -01430); + pragma exception_init (except_01451 , -01451); + pragma exception_init (except_01442 , -01442); +begin + execute immediate 'ALTER TABLE EMPRESA ADD (INDSEGUNDAVIAFECHAMENTOCAIXA NUMBER(1))'; + + exception + when object_exists then null; + when except_01451 then null; + when except_01442 then null; +end; \ No newline at end of file