fixed bug #9356 - Correção de problemas em cancelamento.

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@71933 d1611594-4594-4d17-8e1d-87c2c4800839
master
thiago 2017-07-26 21:51:43 +00:00
parent 5d599d04ab
commit 35c631aa90
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'alter table ocd add( NUMTARJETA VARCHAR2(48 BYTE),
NUMAUTORIZACION VARCHAR2(45 BYTE),
NSU VARCHAR2(18 BYTE))';
exception when column_exists then null;
end;
/
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'alter table OCD_PARAM add INDOCDDINHEIRO number(1) default 1';
exception when column_exists then null;
end;