fixed bug #9212 - Correção de problema em ambiente da serra verde. Alteração do tamanho do campo monetário.

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@70069 d1611594-4594-4d17-8e1d-87c2c4800839
master
thiago 2017-06-19 21:43:29 +00:00
parent 0d7b5bdfd5
commit 3a1110cfaa
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'alter table CONTA_CORRENTE_PTOVTA MODIFY ( IMPORTE number(12,2),
IMPORTETARIFA number(12,2),
IMPORTEPEDAGIO number(12,2),
IMPORTETAXAEMBARQUE number(12,2),
IMPORTESEGURO number(12,2),
IMPORTEINGRESO number(12,2),
IMPORTEEGRESO number(12,2),
IMPORTEDEVOLUCION number(12,2),
IMPORTETROCA number(12,2),
IMPORTECAJA number(12,2),
IMPORTETOTALEFECTIVO number(12,2))';
exception when column_exists then null;
end;