diff --git a/src/db/migration/V20211227_1823__mantis23833.sql b/src/db/migration/V20211227_1823__mantis23833.sql new file mode 100644 index 000000000..eb1e44443 --- /dev/null +++ b/src/db/migration/V20211227_1823__mantis23833.sql @@ -0,0 +1,16 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE BOLETO ADD (REVENUE_ID NUMBER(15))'; + exception when column_exists then null; +end; +/ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE CAJA ADD (REVENUE_ID NUMBER(15))'; + exception when column_exists then null; +end; +/ \ No newline at end of file