diff --git a/src/db/migration/V20201222_1635__mantis21305.sql b/src/db/migration/V20201222_1635__mantis21305.sql new file mode 100644 index 000000000..97f7dd3e8 --- /dev/null +++ b/src/db/migration/V20201222_1635__mantis21305.sql @@ -0,0 +1,11 @@ +declare + object_exists exception; + except_00957 exception; + pragma exception_init (object_exists , -01430); + pragma exception_init (except_00957 , -00957); +begin + execute immediate 'ALTER TABLE EMPRESA MODIFY URLBASESEGURO VARCHAR2(100)'; + exception + when object_exists then null; + when except_00957 then null; +end; \ No newline at end of file