From 0adaad2d8faeb0c889436fb26b714856bb7eb32d Mon Sep 17 00:00:00 2001 From: alberto Date: Thu, 27 Apr 2017 19:36:02 +0000 Subject: [PATCH] =?UTF-8?q?N=C3=BAmero=20de=20fechamento=20sequencial=20(f?= =?UTF-8?q?ixes=20issue=208880)?= 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@68328 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170417_1850__mantis8880.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/db/migration/V20170417_1850__mantis8880.sql diff --git a/src/db/migration/V20170417_1850__mantis8880.sql b/src/db/migration/V20170417_1850__mantis8880.sql new file mode 100644 index 000000000..5ee84755a --- /dev/null +++ b/src/db/migration/V20170417_1850__mantis8880.sql @@ -0,0 +1,17 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE CORTE_TURNO ADD (NUMFECASESOR NUMBER(10))'; + exception when column_exists then null; +end; +/ + +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE USUARIO ADD (NUMFECHAMENTO NUMBER(10))'; + exception when column_exists then null; +end; +/