Merge pull request 'fixes bug #AL_4457' (!119) from AL-4457 into master
Reviewed-on: utilidades/Flyway#119 Reviewed-by: Gleison da Cruz <gleison.cruz@totvs.com.br>master
commit
d0e3d01f0d
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>Flyway</artifactId>
|
||||
<version>1.45.2</version>
|
||||
<version>1.45.3</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
declare
|
||||
indice_nao_existe exception;
|
||||
pragma exception_init (indice_nao_existe , -01418);
|
||||
begin
|
||||
execute immediate 'DROP INDEX unique_tarifa_oficial';
|
||||
exception when indice_nao_existe then null;
|
||||
end;
|
Loading…
Reference in New Issue