This is an automated email from the ASF dual-hosted git repository.
pefernan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-kie-kogito-apps.git
The following commit(s) were added to refs/heads/main by this push:
new 5a1214e98 [kie-issues#1833] Data Audit: Increase the value column size
for value Process/Task Variable logs (#2195)
5a1214e98 is described below
commit 5a1214e981e516d212044200563a85e2fae2b98b
Author: Abdul Jaleel <[email protected]>
AuthorDate: Wed Feb 26 15:58:51 2025 +0530
[kie-issues#1833] Data Audit: Increase the value column size for value
Process/Task Variable logs (#2195)
---
...V1.4.0__Increase_variable_value_column_size.sql | 21 +++++++++++++++++++++
...V1.4.0__Increase_variable_value_column_size.sql | 22 ++++++++++++++++++++++
2 files changed, 43 insertions(+)
diff --git
a/data-audit/kogito-addons-data-audit-jpa/kogito-addons-data-audit-jpa-common/src/main/resources/kie-flyway/db/data-audit/h2/V1.4.0__Increase_variable_value_column_size.sql
b/data-audit/kogito-addons-data-audit-jpa/kogito-addons-data-audit-jpa-common/src/main/resources/kie-flyway/db/data-audit/h2/V1.4.0__Increase_variable_value_column_size.sql
new file mode 100644
index 000000000..480ed9422
--- /dev/null
+++
b/data-audit/kogito-addons-data-audit-jpa/kogito-addons-data-audit-jpa-common/src/main/resources/kie-flyway/db/data-audit/h2/V1.4.0__Increase_variable_value_column_size.sql
@@ -0,0 +1,21 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+ALTER TABLE Process_Instance_Variable_Log ALTER COLUMN variable_value SET DATA
TYPE VARCHAR(MAX);
+ALTER TABLE Task_Instance_Variable_Log ALTER COLUMN variable_value SET DATA
TYPE VARCHAR(MAX);
diff --git
a/data-audit/kogito-addons-data-audit-jpa/kogito-addons-data-audit-jpa-common/src/main/resources/kie-flyway/db/data-audit/postgresql/V1.4.0__Increase_variable_value_column_size.sql
b/data-audit/kogito-addons-data-audit-jpa/kogito-addons-data-audit-jpa-common/src/main/resources/kie-flyway/db/data-audit/postgresql/V1.4.0__Increase_variable_value_column_size.sql
new file mode 100644
index 000000000..a41c2bfa5
--- /dev/null
+++
b/data-audit/kogito-addons-data-audit-jpa/kogito-addons-data-audit-jpa-common/src/main/resources/kie-flyway/db/data-audit/postgresql/V1.4.0__Increase_variable_value_column_size.sql
@@ -0,0 +1,22 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+
+ALTER TABLE Process_Instance_Variable_Log ALTER COLUMN variable_value TYPE
TEXT;
+ALTER TABLE Task_Instance_Variable_Log ALTER COLUMN variable_value TYPE TEXT;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]