dev:lucas

qua: merge scripts antigos branch pricing gestao

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@104743 d1611594-4594-4d17-8e1d-87c2c4800839
master
lucas.taia 2020-12-15 19:09:19 +00:00
parent 935f939899
commit 9a8101c703
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
declare
column_exists exception;
pragma exception_init (column_exists , -00957);
begin
execute immediate 'ALTER TABLE GP_PRICING_IMPORTE RENAME COLUMN DESCUENTOPORCENTAJEVOLTA TO DESCUENTOIMPORTEVOLTA';
exception when column_exists then null;
end;
/
declare
column_exists exception;
pragma exception_init (column_exists , -00957);
begin
execute immediate 'ALTER TABLE GP_PRICING_IMPORTE RENAME COLUMN DESCUENTOPORCREDONDO TO DESCUENTOIMPORTEREDONDO';
exception when column_exists then null;
end;