diff --git a/src/db/migration/V20220621_1520__mantis24573.sql b/src/db/migration/V20220621_1520__mantis24573.sql index f83d0ba41..3fd5ac786 100644 --- a/src/db/migration/V20220621_1520__mantis24573.sql +++ b/src/db/migration/V20220621_1520__mantis24573.sql @@ -55,4 +55,23 @@ begin )'; exception when object_exists then null; end; -/ \ No newline at end of file +/ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE CAJA ADD (NUM_MACON VARCHAR2(9))'; + exception when column_exists then null; +end; +/ + +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE CAJA ADD (NUMSERIE_MACON VARCHAR2(4))'; + exception when column_exists then null; +end; +/ + +