bug #8613
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@66059 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
e663cff149
commit
e3055ea69a
|
@ -0,0 +1,8 @@
|
|||
declare
|
||||
dup_val_on_index exception;
|
||||
pragma exception_init (dup_val_on_index , -00001);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE AG_CONTAS_PAGAR ADD (ISSBASE NUMBER(12,2))';
|
||||
execute immediate 'ALTER TABLE AG_CONTAS_PAGAR ADD (ISSVALOR NUMBER(12,2))';
|
||||
exception when dup_val_on_index then null;
|
||||
end;
|
|
@ -0,0 +1,10 @@
|
|||
declare
|
||||
dup_val_on_index exception;
|
||||
pragma exception_init (dup_val_on_index , -00001);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE AG_CONTAS_PAGAR ADD (COMPETENCIA VARCHAR2(10))';
|
||||
exception when dup_val_on_index then null;
|
||||
end;
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
declare
|
||||
dup_val_on_index exception;
|
||||
pragma exception_init (dup_val_on_index , -00001);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE AG_CONTAS_PAGAR MODIFY (FORNECEDOR VARCHAR2(30))';
|
||||
exception when dup_val_on_index then null;
|
||||
end;
|
|
@ -0,0 +1,7 @@
|
|||
declare
|
||||
dup_val_on_index exception;
|
||||
pragma exception_init (dup_val_on_index , -00001);
|
||||
begin
|
||||
execute immediate 'ALTER TABLE AG_CONTAS_PAGAR ADD (COMISSAO_ID NUMBER(7))';
|
||||
exception when dup_val_on_index then null;
|
||||
end;
|
Loading…
Reference in New Issue