diff --git a/src/db/migration/V20181122_1800__mantis12735.sql b/src/db/migration/V20181122_1800__mantis12735.sql new file mode 100644 index 000000000..10e270571 --- /dev/null +++ b/src/db/migration/V20181122_1800__mantis12735.sql @@ -0,0 +1,8 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01439); +begin + execute immediate 'ALTER TABLE FISCAL_R7 MODIFY (IMPORTEESTORNO NUMBER(14,0))'; + exception when object_exists then null; +end; +