0022773: Espec - Conta Corrente SVI
bug#22773 dev: qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@109063 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
f07772cfad
commit
57f7513631
|
@ -2,7 +2,15 @@ declare
|
||||||
column_exists exception;
|
column_exists exception;
|
||||||
pragma exception_init (column_exists , -01430);
|
pragma exception_init (column_exists , -01430);
|
||||||
begin
|
begin
|
||||||
execute immediate 'ALTER TABLE BOLETO ADD (TAXA_CONVENIENCIA_SVI NUMBER(7,2), PUNTO_VENTA_ID_SVI NUMBER(7,0))';
|
execute immediate 'ALTER TABLE BOLETO ADD (TAXA_CONVENIENCIA_SVI NUMBER(7,2))';
|
||||||
|
exception when column_exists then null;
|
||||||
|
end;
|
||||||
|
/
|
||||||
|
declare
|
||||||
|
column_exists exception;
|
||||||
|
pragma exception_init (column_exists , -01430);
|
||||||
|
begin
|
||||||
|
execute immediate 'ALTER TABLE BOLETO ADD (PUNTO_VENTA_ID_SVI NUMBER(7,0))';
|
||||||
exception when column_exists then null;
|
exception when column_exists then null;
|
||||||
end;
|
end;
|
||||||
/
|
/
|
||||||
|
|
Loading…
Reference in New Issue