From a7eaf744a717df1be776e4897c49726a775f5e4b Mon Sep 17 00:00:00 2001 From: alberto Date: Mon, 27 Aug 2018 23:12:29 +0000 Subject: [PATCH] AJUSTES PAF 2018 bug#11562 dev:trevezani qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@84757 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20180827_2120__pafecf.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/db/migration/V20180827_2120__pafecf.sql diff --git a/src/db/migration/V20180827_2120__pafecf.sql b/src/db/migration/V20180827_2120__pafecf.sql new file mode 100644 index 000000000..40987c886 --- /dev/null +++ b/src/db/migration/V20180827_2120__pafecf.sql @@ -0,0 +1,17 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); + +begin + execute immediate 'ALTER TABLE FISCAL_D2 ADD (DATAMOV VARCHAR2(8))'; + exception when column_exists then null; +end; +/ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); + +begin + execute immediate 'ALTER TABLE FISCAL_D3 ADD (DATAMOV VARCHAR2(8))'; + exception when column_exists then null; +end;