From 073f92edb195cfd06eaf57e46001e479c96fc9bd Mon Sep 17 00:00:00 2001 From: valdevir Date: Tue, 22 Dec 2020 20:46:47 +0000 Subject: [PATCH] fixes bug#21305 qua: dev:Valdir Erro campo url menor que necessario git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@104827 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20201222_1635__mantis21305.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/db/migration/V20201222_1635__mantis21305.sql 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