diff --git a/pom.xml b/pom.xml
index 9ae129334..4c82103de 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
br.com.rjconsultores
Flyway
- 1.45.2
+ 1.45.3
diff --git a/src/db/migration/V20240605_1454__AL-4457.sql b/src/db/migration/V20240605_1454__AL-4457.sql
new file mode 100644
index 000000000..a09eeb255
--- /dev/null
+++ b/src/db/migration/V20240605_1454__AL-4457.sql
@@ -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;
\ No newline at end of file