From d2957782ddf92226d74ffc0f9bdcc149a8075d32 Mon Sep 17 00:00:00 2001 From: fabio Date: Mon, 25 Nov 2019 19:21:59 +0000 Subject: [PATCH] bug#16864 dev: Lucas Silverio qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@99015 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20191120_1129__mantis16864.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20191120_1129__mantis16864.sql diff --git a/src/db/migration/V20191120_1129__mantis16864.sql b/src/db/migration/V20191120_1129__mantis16864.sql new file mode 100644 index 000000000..7b391d629 --- /dev/null +++ b/src/db/migration/V20191120_1129__mantis16864.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE FECHAMENTO_PARAMGERAL ADD (BOLETO_BANCO_INSTRUCAO2 VARCHAR2(89), BOLETO_BANCO_INSTRUCAO3 VARCHAR2(89),BOLETO_BANCO_INSTRUCAO_SACADO VARCHAR2(89))'; + exception when object_exists then null; +end; \ No newline at end of file