Alterações feitas em cadastro de linha para permitir ou não o uso do pricing

fixes bug#15644
dev:Thiago
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@98100 d1611594-4594-4d17-8e1d-87c2c4800839
master
thiago 2019-10-07 02:28:38 +00:00
parent bb14fa8dd2
commit 2150eb6940
1 changed files with 7 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 RUTA_COMBINACION ADD (INDUSAPRICING NUMBER(1))';
exception when column_exists then null;
end;