criado a customização para venda em pé, sentado por serviço

fixes bug#11741
dev:lucas
qua:marcelo

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@85583 d1611594-4594-4d17-8e1d-87c2c4800839
master
walace 2018-09-21 21:27:37 +00:00
parent cf7ed04296
commit 39774b5c76
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,8 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE ESQUEMA_TRAMO ADD (TIPO_PASSAGEM VARCHAR2(1))';
exception when column_exists then null;
end;
/

View File

@ -0,0 +1,8 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE ESQUEMA_TRAMO ADD (TIPO_PASSAGEM VARCHAR2(1))';
exception when column_exists then null;
end;
/