fixes bug#13611

dev:lucas

qua: 

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@90367 d1611594-4594-4d17-8e1d-87c2c4800839
master
lucas.taia 2019-02-28 00:32:21 +00:00
parent 54fc08b219
commit 1499059686
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
declare declare
column_exists exception; object_exists exception;
pragma exception_init (object_exists , -00955); pragma exception_init (object_exists , -00955);
begin begin
execute immediate 'CREATE INDEX IDX_CHAVE ON CUSTOM (CHAVE)'; execute immediate 'CREATE INDEX IDX_CHAVE ON CUSTOM (CHAVE)';
exception when column_exists then null; exception when object_exists then null;
end; end;
/ /
declare declare