diff --git a/src/db/migration/V20180826_2310__pafecf.sql b/src/db/migration/V20180826_2310__pafecf.sql new file mode 100644 index 000000000..6aafe2eac --- /dev/null +++ b/src/db/migration/V20180826_2310__pafecf.sql @@ -0,0 +1,9 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); + +begin + execute immediate 'ALTER TABLE FISCAL_D3 ADD (BOLETO_ID NUMBER(15), PUNTOVENTA_ID NUMBER(7), CORRIDA_ID NUMBER(7), FECCORRIDA DATE)'; + exception when column_exists then null; +end; +