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;