From 5295486042344c7dc4496a0af3934e6d618e66a5 Mon Sep 17 00:00:00 2001 From: luis Date: Mon, 17 Jul 2017 22:53:02 +0000 Subject: [PATCH] Issue #9345: GAP019 - Estoque de passagens por bilheteiro git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@71475 d1611594-4594-4d17-8e1d-87c2c4800839 --- src/db/migration/V20170714_1500__mantis9345.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/db/migration/V20170714_1500__mantis9345.sql diff --git a/src/db/migration/V20170714_1500__mantis9345.sql b/src/db/migration/V20170714_1500__mantis9345.sql new file mode 100644 index 000000000..158993f32 --- /dev/null +++ b/src/db/migration/V20170714_1500__mantis9345.sql @@ -0,0 +1,8 @@ +declare + object_exists exception; + pragma exception_init (object_exists , -01430); +begin + execute immediate 'ALTER TABLE PUNTO_VENTA add INDBLOQUEACANCTROCAPASSNORMAL number(1)'; + execute immediate 'ALTER TABLE PUNTO_VENTA add INDBLOQUEACANCTROCAPTA number(1)'; + exception when object_exists then null; +end; \ No newline at end of file