Skip to content

Commit 304a8d3

Browse files
committed
feat(liquibase): add changelog for updating section instance configuration
1 parent 3c47b5c commit 304a8d3

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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="20260114001" author="manuel">
8+
9+
<update tableName="utm_configuration_section">
10+
<column name="section" value="Instance ID"/>
11+
<column name="description" value="This section helps you identify your Instance ID to share with support for faster assistance."/>
12+
<where>id = 6 </where>
13+
</update>
14+
15+
<update tableName="utm_configuration_parameter">
16+
<column name="conf_param_large" value="Instance Id"/>
17+
<column name="conf_param_description" value="Instance Id"/>
18+
<where>conf_param_short = 'utmstack.instance.data'</where>
19+
</update>
20+
21+
<delete tableName="utm_configuration_parameter">
22+
<where>conf_param_short in ('utmstack.instance.contact_email', 'utmstack.instance.country', 'utmstack.instance.organization')</where>
23+
</delete>
24+
25+
</changeSet>
26+
</databaseChangeLog>

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

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

304304
<include file="config/liquibase/changelog/20260113001_update_macos_integration_category.xml" relativeToChangelogFile="false"/>
305305

306+
<include file="/config/liquibase/changelog/20260114001_update_section_instance_config.xml" relativeToChangelogFile="false"/>
307+
306308

307309
</databaseChangeLog>

0 commit comments

Comments
 (0)