Skip to content

Commit 9bcca5a

Browse files
changeset[backend](windows_rules): updated windows rules
1 parent 3ecb0c0 commit 9bcca5a

File tree

3 files changed

+390
-0
lines changed

3 files changed

+390
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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="20260401002" author="Alex">
8+
9+
<sql dbms="postgresql" splitStatements="true" stripComments="true">
10+
<![CDATA[
11+
delete from utm_correlation_rules
12+
where id in (
13+
select u.rule_id
14+
from utm_group_rules_data_type u
15+
where u.data_type_id = 1
16+
)
17+
]]>
18+
</sql>
19+
20+
<sqlFile
21+
path="config/liquibase/data/20260401/windows/utm_correlation_rules.sql"
22+
relativeToChangelogFile="false"
23+
splitStatements="false"
24+
stripComments="false"
25+
encoding="UTF-8"/>
26+
27+
</changeSet>
28+
29+
</databaseChangeLog>

0 commit comments

Comments
 (0)