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
aristides 2024-06-05 19:56:18 +00:00
commit d0e3d01f0d
2 changed files with 8 additions and 1 deletions

View File

@ -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>

View File

@ -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;