diff --git a/pom.xml b/pom.xml
index 91c9ec4fc..1e5895994 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
4.0.0
br.com.rjconsultores
Flyway
- 1.84.0
+ 1.85.0
diff --git a/src/db/migration/V20240816_1917__AL-4466.sql b/src/db/migration/V20240816_1917__AL-4466.sql
new file mode 100644
index 000000000..98d52b115
--- /dev/null
+++ b/src/db/migration/V20240816_1917__AL-4466.sql
@@ -0,0 +1,28 @@
+declare
+ object_exists exception;
+ pragma exception_init (object_exists , -00955);
+begin
+ execute immediate '
+CREATE TABLE EMPRESA_CONFIG_LAYOUT (
+ EMPRESACONFIGLAYOUT_ID NUMBER(7, 0) PRIMARY KEY,
+ EMPRESA_ID NUMBER(7, 0),
+ IMPRESIONLAYOUTCONFIG_ID NUMBER(7, 0),
+ TIPOVENTA_ID NUMBER(2, 0),
+ INDEMAIL NUMBER(1, 0),
+ ACTIVO NUMBER(1, 0),
+ FECMODIF DATE,
+ USUARIO_ID NUMBER(7, 0),
+ CONSTRAINT FK_EMP_CONF_LAYOUT FOREIGN KEY ( EMPRESA_ID )
+ REFERENCES EMPRESA ( EMPRESA_ID )
+)';
+ exception when object_exists then null;
+end;
+/
+declare
+ object_exists exception;
+ pragma exception_init (object_exists , -00955);
+begin
+ execute immediate 'CREATE SEQUENCE "EMPRESA_CONFIG_LAYOUT_SEQ" INCREMENT BY 1 START WITH 1 NOCACHE ORDER NOCYCLE';
+ exception when object_exists then null;
+end;
+/
\ No newline at end of file