AJUSTES PAF 2018

bug#11562
dev:trevezani
qua:

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@84713 d1611594-4594-4d17-8e1d-87c2c4800839
master
alberto 2018-08-27 02:23:46 +00:00
parent 872d0fa5bd
commit 3c6cc1f4b9
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
declare
column_exists exception;
pragma exception_init (column_exists , -01430);
begin
execute immediate 'ALTER TABLE FISCAL_D3 ADD (BOLETO_ID NUMBER(15), PUNTOVENTA_ID NUMBER(7), CORRIDA_ID NUMBER(7), FECCORRIDA DATE)';
exception when column_exists then null;
end;