fixes bug#20609
dev:wilian qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@103659 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
b9c8a1dae6
commit
92c7818533
|
@ -0,0 +1,15 @@
|
||||||
|
declare
|
||||||
|
column_exists exception;
|
||||||
|
pragma exception_init (column_exists , -01430);
|
||||||
|
begin
|
||||||
|
execute immediate 'ALTER TABLE BPE_CTRL_DISPONIBILIDADE MODIFY BPE_REJEITADO_ID NUMBER(12)';
|
||||||
|
exception when column_exists then null;
|
||||||
|
end;
|
||||||
|
/
|
||||||
|
declare
|
||||||
|
column_exists exception;
|
||||||
|
pragma exception_init (column_exists , -01430);
|
||||||
|
begin
|
||||||
|
execute immediate 'ALTER TABLE CAJA_DIVERSOS MODIFY BPE_ID NUMBER(12)';
|
||||||
|
exception when column_exists then null;
|
||||||
|
end;
|
Loading…
Reference in New Issue