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
master
luis 2017-07-17 22:53:02 +00:00
parent db5998c77b
commit 5295486042
1 changed files with 8 additions and 0 deletions

View File

@ -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;