diff --git a/pom.xml b/pom.xml
index 5b18b4295..bc5d38ca9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
br.com.rjconsultores
Flyway
- 1.71.0
+ 1.72.0
diff --git a/src/db/migration/V20240708_1537__AL-4346.sql b/src/db/migration/V20240708_1537__AL-4346.sql
index a7c52af92..7a29c8ce4 100644
--- a/src/db/migration/V20240708_1537__AL-4346.sql
+++ b/src/db/migration/V20240708_1537__AL-4346.sql
@@ -2,7 +2,7 @@ declare
object_exists exception;
pragma exception_init (object_exists , -00955);
begin
- execute immediate 'CREATE TABLE CONVENIO_TRANSPORT (
+ execute immediate 'CREATE TABLE CONVENIO_TRANSPORTADORA (
CONVENIOTRANSPORTADORA_ID NUMBER(7,0) PRIMARY KEY,
TRANSPORTADORA_ID NUMBER(7,0),
NOME_CONVENIO VARCHAR2(150),
diff --git a/src/db/migration/V20240710_1907__AL-4346.sql b/src/db/migration/V20240710_1907__AL-4346.sql
index 14ca502f1..fb6e2ebd1 100644
--- a/src/db/migration/V20240710_1907__AL-4346.sql
+++ b/src/db/migration/V20240710_1907__AL-4346.sql
@@ -24,4 +24,5 @@ declare
begin
execute immediate 'CREATE SEQUENCE "TARIFA_CONVENIO_TRANSP_SEQ" MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE';
exception when object_exists then null;
-end;
\ No newline at end of file
+end;
+/
\ No newline at end of file