diff --git a/src/db/migration/V20180924_1820__mantis11837.sql b/src/db/migration/V20180924_1820__mantis11837.sql new file mode 100644 index 000000000..3ce22607b --- /dev/null +++ b/src/db/migration/V20180924_1820__mantis11837.sql @@ -0,0 +1,17 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate + 'ALTER TABLE BOLETO ADD (ORIGENA_ID NUMBER(7),DESTINOA_ID NUMBER(7))'; + exception when object_exists then null; +end; +/ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate + 'ALTER TABLE CAJA ADD (ORIGENA_ID NUMBER(7),DESTINOA_ID NUMBER(7))'; + exception when object_exists then null; +end;