0019537: GLPI - 25705 - Regras ARTEP Customizadas no SRVP para serem incorporadas no TOTALBUS
bug#19537 dev:valdevir qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@102579 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
a383282cf0
commit
7289d643e3
|
@ -0,0 +1,16 @@
|
|||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE ORGAO_CANCELACION ADD TEMPO_TROCA_POLTRONA_H NUMBER(5,0)';
|
||||
exception when column_exists then null;
|
||||
end;
|
||||
/
|
||||
declare
|
||||
column_exists exception;
|
||||
pragma exception_init (column_exists , -01430);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE ORGAO_CANCELACION ADD TEMPO_TROCA_POLTRONA_MIN NUMBER(5,0)';
|
||||
exception when column_exists then null;
|
||||
end;
|
||||
/
|
|
@ -0,0 +1,14 @@
|
|||
DO $$
|
||||
BEGIN
|
||||
ALTER TABLE ORGAO_CANCELACION ADD TEMPO_TROCA_POLTRONA_H NUMBER(5,0);
|
||||
EXCEPTION WHEN duplicate_column THEN NULL;
|
||||
END
|
||||
$$;
|
||||
/
|
||||
DO $$
|
||||
BEGIN
|
||||
ALTER TABLE ORGAO_CANCELACION ADD TEMPO_TROCA_POLTRONA_MIN NUMBER(5,0);
|
||||
EXCEPTION WHEN duplicate_column THEN NULL;
|
||||
END
|
||||
$$;
|
||||
/
|
Loading…
Reference in New Issue