From 5dcfb3b5dcd9c89223e09b954485e95ec051e016 Mon Sep 17 00:00:00 2001 From: alberto Date: Mon, 26 Jun 2017 23:10:00 +0000 Subject: [PATCH] =?UTF-8?q?Confer=C3=AAncia=20de=20Caixa=20-=20MD=20(issue?= =?UTF-8?q?=209150)?= 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@70639 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../migration/V20170626_1130__mantis9150.sql | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/db/migration/V20170626_1130__mantis9150.sql diff --git a/src/db/migration/V20170626_1130__mantis9150.sql b/src/db/migration/V20170626_1130__mantis9150.sql new file mode 100644 index 000000000..7434a9ffa --- /dev/null +++ b/src/db/migration/V20170626_1130__mantis9150.sql @@ -0,0 +1,25 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE MD_TOTALIZADOR ADD (ACTIVO NUMBER(1))'; + exception when object_exists then null; +end; +/ + +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE MD_TOTALIZADOR ADD (USUARIO_ID NUMBER(7))'; + exception when object_exists then null; +end; +/ + +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE MD_TOTALIZADOR ADD (FECMODIF DATE)'; + exception when object_exists then null; +end;