diff --git a/src/db/migration/V20240705_1528__AL-4454.sql b/src/db/migration/V20240705_1528__AL-4454.sql index 093ff30fe..51ddc9667 100644 --- a/src/db/migration/V20240705_1528__AL-4454.sql +++ b/src/db/migration/V20240705_1528__AL-4454.sql @@ -2,11 +2,10 @@ declare column_exists exception; pragma exception_init (column_exists , -01430); begin - execute immediate 'ALTER TABLE redondeo MODIFY (valorinicial NUMBER(7, 2), - valorfinal NUMBER(7, 2), - valorredondeo NUMBER(7, 2) -)'; - exception when column_exists then null; + execute immediate 'ALTER TABLE redondeo MODIFY valorinicial NUMBER(7, 2)'; + execute immediate 'ALTER TABLE redondeo MODIFY valorfinal NUMBER(7, 2)'; + execute immediate 'ALTER TABLE redondeo MODIFY valorredondeo NUMBER(7, 2)'; + exception when column_exists then null; end; / declare