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-87c2c4800839master
parent
5d599d04ab
commit
35c631aa90
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue