From 7f3d317010abc5f22be9ff0f8fb0024b4e6f6830 Mon Sep 17 00:00:00 2001 From: gleimar Date: Thu, 21 Feb 2019 13:50:23 +0000 Subject: [PATCH] fixes bug#13649 dev:alberto qua:junia git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@90102 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20190221_1045__mantis13649.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/db/migration/V20190221_1045__mantis13649.sql diff --git a/src/db/migration/V20190221_1045__mantis13649.sql b/src/db/migration/V20190221_1045__mantis13649.sql new file mode 100644 index 000000000..696532aa0 --- /dev/null +++ b/src/db/migration/V20190221_1045__mantis13649.sql @@ -0,0 +1,13 @@ +declare + + column_exists exception; + + pragma exception_init (column_exists , -01430); + +begin + + execute immediate 'ALTER TABLE VTABOL.TARIFA MODIFY TARIFA_ID NUMBER(10,0)'; + + exception when column_exists then null; + +end; \ No newline at end of file