diff --git a/src/db/migration/V20180611_1050__mantis10873.sql b/src/db/migration/V20180611_1050__mantis10873.sql new file mode 100644 index 000000000..a23a0954a --- /dev/null +++ b/src/db/migration/V20180611_1050__mantis10873.sql @@ -0,0 +1,8 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -02275); +begin + execute immediate + 'ALTER TABLE BPE MODIFY (RETORNO_ID VARCHAR2(50 BYTE))'; + exception when object_exists then null; +end; \ No newline at end of file