From 5cc76438dfafba63ed83c48bd0230fb7e5e09450 Mon Sep 17 00:00:00 2001 From: lucassilverio Date: Tue, 12 May 2020 21:31:08 +0000 Subject: [PATCH] bug#19139 dev: xxx qua: xxx Implementando checbox para retornar todas as localidade - API RJ git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@101570 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20200511_1506__mantis19139.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/db/migration/V20200511_1506__mantis19139.sql diff --git a/src/db/migration/V20200511_1506__mantis19139.sql b/src/db/migration/V20200511_1506__mantis19139.sql new file mode 100644 index 000000000..087e7f4a1 --- /dev/null +++ b/src/db/migration/V20200511_1506__mantis19139.sql @@ -0,0 +1,7 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE USUARIO ADD (INDRETORNATODASLOCALIDADES NUMBER(1) DEFAULT 0 NOT NULL)'; + exception when object_exists then null; +end; \ No newline at end of file