diff --git a/src/db/migration/V20210909_1038__mantis22773.sql b/src/db/migration/V20210909_1038__mantis22773.sql index 5a6b87d46..79946d945 100644 --- a/src/db/migration/V20210909_1038__mantis22773.sql +++ b/src/db/migration/V20210909_1038__mantis22773.sql @@ -2,7 +2,15 @@ declare column_exists exception; pragma exception_init (column_exists , -01430); begin - execute immediate 'ALTER TABLE BOLETO ADD (TAXA_CONVENIENCIA_SVI NUMBER(7,2), PUNTO_VENTA_ID_SVI NUMBER(7,0))'; + execute immediate 'ALTER TABLE BOLETO ADD (TAXA_CONVENIENCIA_SVI NUMBER(7,2))'; + exception when column_exists then null; +end; +/ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE BOLETO ADD (PUNTO_VENTA_ID_SVI NUMBER(7,0))'; exception when column_exists then null; end; /