fixes bug#13611
dev:lucas qua: git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@90367 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
54fc08b219
commit
1499059686
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue