0014144: JCA - GLPI 12922 - 2ª Via no Totem

0013964: Atualização - segunda via
0014232: Erro ao emitir passagem J3
bug#14144
bug#13964
bug#14232
dev:daniel
qua:junia

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@92718 d1611594-4594-4d17-8e1d-87c2c4800839
master
valdir 2019-05-02 17:06:28 +00:00
parent aaf68fa2c0
commit c7bbe4ab47
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,7 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE ORGAO_EMP_PARAM ADD INDNAORESTRINGE2VIABPE NUMBER(1,0) DEFAULT 0';
exception when column_exists then null;
end;

View File

@ -0,0 +1,5 @@
DO $$
BEGIN
ALTER TABLE ORGAO_EMP_PARAM ADD INDNAORESTRINGE2VIABPE NUMBER(1,0) DEFAULT 0;
END
$$;