From 1092219701195f606023a6d92fabac67e3b69b3e Mon Sep 17 00:00:00 2001 From: alberto Date: Mon, 30 Dec 2019 17:40:13 +0000 Subject: [PATCH] Nova API - Release 02 bug#17264 dev:trevezani qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@99527 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20191230_1420__mantis17264.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20191230_1420__mantis17264.sql diff --git a/src/db/migration/V20191230_1420__mantis17264.sql b/src/db/migration/V20191230_1420__mantis17264.sql new file mode 100644 index 000000000..33ac9528a --- /dev/null +++ b/src/db/migration/V20191230_1420__mantis17264.sql @@ -0,0 +1,7 @@ +declare + column_exists exception; + pragma exception_init (column_exists , -01430); +begin + execute immediate 'ALTER TABLE USUARIO ADD ESTACIONINTERNET_ID NUMBER(7)'; + exception when column_exists then null; +end; \ No newline at end of file