From b67800e991929947129ff13f01691cf67a0a542d Mon Sep 17 00:00:00 2001 From: wilian Date: Tue, 30 Jun 2020 21:04:09 +0000 Subject: [PATCH] bug#19569 dev:thiago qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@102258 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20200626_1448__mantis19569.sql | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/db/migration/V20200626_1448__mantis19569.sql diff --git a/src/db/migration/V20200626_1448__mantis19569.sql b/src/db/migration/V20200626_1448__mantis19569.sql new file mode 100644 index 000000000..1f3a41d31 --- /dev/null +++ b/src/db/migration/V20200626_1448__mantis19569.sql @@ -0,0 +1,12 @@ +declare + object_exists exception; + except_00957 exception; + + pragma exception_init (object_exists , -01430); + pragma exception_init (except_00957 , -00957); +begin + execute immediate 'ALTER TABLE MD_CONTA MODIFY ORIGEM VARCHAR(10)'; + exception + when object_exists then null; + when except_00957 then null; +end; \ No newline at end of file