fixes bug #AL_4457

master
Aristides dos Reis Júnior 2024-06-05 16:33:35 -03:00
parent 561975382f
commit 215a2aa008
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;