diff --git a/pom.xml b/pom.xml
index 7485ce048..b671b7e4c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
br.com.rjconsultores
Flyway
- 1.98.0
+ 1.98.1
diff --git a/src/db/migration/V20241008_0914__AL-4549.sql b/src/db/migration/V20241008_0914__AL-4549.sql
new file mode 100644
index 000000000..912cd5a97
--- /dev/null
+++ b/src/db/migration/V20241008_0914__AL-4549.sql
@@ -0,0 +1,14 @@
+-- CREATE TABLE/CREATE SEQUENCE
+declare
+ object_exists exception;
+ pragma exception_init (object_exists , -00955);
+begin
+ execute immediate 'CREATE TABLE "STATUS_SOLICITUD_EXPRESO" (
+ "STATUSSOLICITUDEXPRESO_ID" NUMBER(15, 0) NOT NULL PRIMARY KEY,
+ "DESCSTATUSSOLICITUDEXPRESO" VARCHAR2(30 BYTE),
+ "ACTIVO" NUMBER(1),
+ "FECMODIF" DATE,
+ "USUARIO_ID" NUMBER(7)
+)';
+ exception when object_exists then null;
+end;
\ No newline at end of file