Skip to content

Commit ac57546

Browse files
committed
fix: incident status and solution not updating
1 parent 0920150 commit ac57546

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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="20240109001" author="manuel">
8+
<sql dbms="postgresql" splitStatements="true" stripComments="true">
9+
ALTER TABLE utm_incident_history
10+
ALTER COLUMN action_detail TYPE VARCHAR(1000);
11+
</sql>
12+
</changeSet>
13+
</databaseChangeLog>

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,6 @@
6565

6666
<include file="/config/liquibase/changelog/20240517001_add_collectors_source_menu.xml" relativeToChangelogFile="false"/>
6767

68+
<include file="/config/liquibase/changelog/20241122001_alter_action_detail_length.xml" relativeToChangelogFile="false"/>
6869

6970
</databaseChangeLog>

0 commit comments

Comments
 (0)