From 832ee1b63f094de33cc1f5073ca95977d45778a6 Mon Sep 17 00:00:00 2001 From: alberto Date: Fri, 11 Oct 2019 19:59:15 +0000 Subject: [PATCH] =?UTF-8?q?Criar=20servi=C3=A7o=20para=20trazer=20informa?= =?UTF-8?q?=C3=A7=C3=B5es=20para=20login=20Ag=C3=AAncia=20Digital=20bug#16?= =?UTF-8?q?383=20dev:trevezani=20qua:?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@98227 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20191011_1500__mantis16383.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20191011_1500__mantis16383.sql diff --git a/src/db/migration/V20191011_1500__mantis16383.sql b/src/db/migration/V20191011_1500__mantis16383.sql new file mode 100644 index 000000000..166311f47 --- /dev/null +++ b/src/db/migration/V20191011_1500__mantis16383.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE ESTACION ADD (IMEI VARCHAR(20))'; + exception when object_exists then null; +end; \ No newline at end of file