diff --git a/src/db/migration/V20170716_1718__mantis9293.sql b/src/db/migration/V20170716_1718__mantis9293.sql new file mode 100644 index 000000000..80d96ecf4 --- /dev/null +++ b/src/db/migration/V20170716_1718__mantis9293.sql @@ -0,0 +1,9 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE ORGAO_CANCELACION ADD(INDMULTATRANSFERENCIA NUMBER(1,0), + INDDEVOLUCAOTRANSFERENCIA NUMBER(1,0), + INDCOBRANCATRANSFERENCIA NUMBER(1,0))'; + exception when column_exists then null; +end; \ No newline at end of file