diff --git a/src/db/migration/V20191120_1129__mantis16864.sql b/src/db/migration/V20191120_1129__mantis16864.sql new file mode 100644 index 000000000..7b391d629 --- /dev/null +++ b/src/db/migration/V20191120_1129__mantis16864.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE FECHAMENTO_PARAMGERAL ADD (BOLETO_BANCO_INSTRUCAO2 VARCHAR2(89), BOLETO_BANCO_INSTRUCAO3 VARCHAR2(89),BOLETO_BANCO_INSTRUCAO_SACADO VARCHAR2(89))'; + exception when object_exists then null; +end; \ No newline at end of file