diff --git a/src/db/migration/V20180430_2000__mantis9100.sql b/src/db/migration/V20180430_2000__mantis9100.sql new file mode 100644 index 000000000..759512204 --- /dev/null +++ b/src/db/migration/V20180430_2000__mantis9100.sql @@ -0,0 +1,15 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE FECHAMENTO_PARAMGERAL ADD (BOLETO_BANCO_AGENCIA_DIGITO NUMBER(1))'; + exception when column_exists then null; +end; +/ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE FECHAMENTO_PARAMGERAL ADD (BOLETO_BANCO_CARTEIRA_VARIAVEL NUMBER(3))'; + exception when column_exists then null; +end;