diff --git a/pom.xml b/pom.xml
index 8122aaf3b..a1b07b84d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
br.com.rjconsultores
Flyway
- 1.95.0
+ 1.96.0
diff --git a/src/db/backup/oracle/V20240920_1051__AL4925.sql b/src/db/backup/oracle/V20240920_1051__AL4925.sql
new file mode 100644
index 000000000..f1c044e56
--- /dev/null
+++ b/src/db/backup/oracle/V20240920_1051__AL4925.sql
@@ -0,0 +1,7 @@
+declare
+ column_exists exception;
+ pragma exception_init (column_exists , -01430);
+begin
+ execute immediate 'ALTER TABLE CATEGORIA ADD INDVENDEEMPEAPI NUMBER(1)';
+ exception when column_exists then null;
+end;