From f21338f3947939d5e0af29a33ae46cff1ebf02f9 Mon Sep 17 00:00:00 2001 From: alberto Date: Mon, 17 Jul 2017 16:41:04 +0000 Subject: [PATCH] GAP079 / GAP074 / GAP080 /GAP081 / GAP075 / GAP073 (issue 9183) git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@71438 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170717_1200__mantis9150.sql | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/db/migration/V20170717_1200__mantis9150.sql diff --git a/src/db/migration/V20170717_1200__mantis9150.sql b/src/db/migration/V20170717_1200__mantis9150.sql new file mode 100644 index 000000000..b35b8781d --- /dev/null +++ b/src/db/migration/V20170717_1200__mantis9150.sql @@ -0,0 +1,16 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE USUARIO ADD (PERCOMISSAO NUMBER(7,2))'; + exception when object_exists then null; +end; +/ + +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE USUARIO ADD (ITENSCOMISSAO NUMBER(1))'; + exception when object_exists then null; +end;