diff --git a/pom.xml b/pom.xml
index a1b07b84d..18d6daf9e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
br.com.rjconsultores
Flyway
- 1.96.0
+ 1.97.0
diff --git a/src/db/migration/V20240927_1447__AL-5017.sql b/src/db/migration/V20240927_1447__AL-5017.sql
new file mode 100644
index 000000000..466f669ac
--- /dev/null
+++ b/src/db/migration/V20240927_1447__AL-5017.sql
@@ -0,0 +1,15 @@
+declare
+ column_exists exception;
+ pragma exception_init (column_exists , -01430);
+begin
+ execute immediate 'ALTER TABLE PARADA ADD LATITUDE NUMBER(10,8)';
+ exception when column_exists then null;
+end;
+/
+declare
+ column_exists exception;
+ pragma exception_init (column_exists , -01430);
+begin
+ execute immediate 'ALTER TABLE PARADA ADD LONGITUDE NUMBER(11,8)';
+ exception when column_exists then null;
+end;
\ No newline at end of file