Skip to content

Commit 3ad1001

Browse files
committed
Merge remote-tracking branch 'origin/release/v11' into release/v11
2 parents 6f71afb + 8ea8ea2 commit 3ad1001

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<databaseChangeLog
3+
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.5.xsd">
6+
7+
<changeSet id="20251110001" author="Manuel">
8+
9+
<update tableName="utm_correlation_rules">
10+
<column name="rule_active" valueBoolean="false"/>
11+
<where>rule_definition_def LIKE '%.matches(%'</where>
12+
</update>
13+
14+
<rollback>
15+
<update tableName="utm_correlation_rules">
16+
<column name="rule_active" valueBoolean="true"/>
17+
<where>rule_definition_def LIKE '%.matches(%'</where>
18+
</update>
19+
</rollback>
20+
21+
</changeSet>
22+
23+
</databaseChangeLog>

backend/src/main/resources/config/liquibase/master.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,5 +261,7 @@
261261

262262
<include file="/config/liquibase/changelog/20251107002_update_filters_fields_visualization.xml" relativeToChangelogFile="false"/>
263263

264+
<include file="/config/liquibase/changelog/20251110001_disable_correlation_rules_with_regex.xml" relativeToChangelogFile="false"/>
265+
264266

265267
</databaseChangeLog>

0 commit comments

Comments
 (0)