Skip to content

Commit 2502610

Browse files
Merge pull request #1923 from utmstack/backlog/changeset_remove_wtm
changeset[backend](rules): added 'Windows Token Manipulation' removalchange set
2 parents fb970b8 + 57ad54d commit 2502610

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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="20260316001" author="Alex">
8+
<sql dbms="postgresql" splitStatements="true" stripComments="true">
9+
<![CDATA[
10+
DELETE FROM utm_correlation_rules WHERE rule_name = 'Windows Token Manipulation';
11+
]]>
12+
</sql>
13+
</changeSet>
14+
</databaseChangeLog>

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

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

512512
<include file="/config/liquibase/changelog/20260303003_update_filter_windows.xml" relativeToChangelogFile="false"/>
513513

514+
<include file="/config/liquibase/changelog/20260316001_remove_windows_token_manipulation_rule.xml" relativeToChangelogFile="false"/>
515+
514516

515517
</databaseChangeLog>

0 commit comments

Comments
 (0)