fixes bug #10259 - Revisão pelo Wallisson e Codereview Valdevir

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@79049 d1611594-4594-4d17-8e1d-87c2c4800839
master
alexandre.lima 2018-02-20 20:27:10 +00:00
parent e2ac07b95e
commit d89e6a5590
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
declare
dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -00001);
begin
execute immediate 'ALTER TABLE ASIENTO_EXCLUSIVO ADD USUARIO VARCHAR(20) NULL';
execute immediate 'ALTER TABLE ASIENTO_EXCLUSIVO ADD AGENCIA VARCHAR(80) NULL';
exception when dup_val_on_index then null;
end;