From a44c6cb3b2d1b0f55c961a423906960709d4d849 Mon Sep 17 00:00:00 2001 From: alberto Date: Tue, 18 Jul 2017 22:33: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@71529 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170718_1910__mantis9150.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20170718_1910__mantis9150.sql diff --git a/src/db/migration/V20170718_1910__mantis9150.sql b/src/db/migration/V20170718_1910__mantis9150.sql new file mode 100644 index 000000000..d74ac0f02 --- /dev/null +++ b/src/db/migration/V20170718_1910__mantis9150.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -00955); +begin + execute immediate 'ALTER TABLE CORTE_TURNO ADD (IMPORTECOMISSAO NUMBER(12,2))'; + exception when object_exists then null; +end;