Skip to content

Commit 56360af

Browse files
committed
fix: update display name for Sophos integration
1 parent 350b77b commit 56360af

2 files changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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="20250516001" author="Manuel">
8+
<sql>
9+
UPDATE utm_module
10+
set pretty_name = 'Sophos Firewall'
11+
WHERE id = 30;
12+
</sql>
13+
</changeSet>
14+
15+
</databaseChangeLog>

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

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

102102
<include file="/config/liquibase/changelog/20250515003_update_filter_o365.xml" relativeToChangelogFile="false"/>
103103

104+
<include file="/config/liquibase/changelog/20250516001_udpate_sophos_name.xml" relativeToChangelogFile="false"/>
105+
104106

105107
</databaseChangeLog>

0 commit comments

Comments
 (0)