Skip to content

Commit

Permalink
Increase alarm_record#message column length to 2000 (#12363)
Browse files Browse the repository at this point in the history
* Increase `alarm_record#message` column length to 2000 from 200.
* Remove `alarm_record#message` column indexing.
  • Loading branch information
friendlytkyj committed Jun 22, 2024
1 parent 84dece9 commit 712a0e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/en/changes/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
* Support trace MQE query for debugging.
* Add Component ID(158) for the Solon framework.
* Fix metrics tag in HTTP handler of browser receiver plugin.
* Increase `alarm_record#message` column length to 2000 from 200.
* Remove `alarm_record#message` column indexing.

#### UI

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ protected StorageID id0() {
@Column(name = TYPE)
private String type;

@Column(name = MESSAGE)
@Column(name = MESSAGE, storageOnly = true, length = 2000)
private String message;

@Column(name = PARAMETERS, storageOnly = true, length = PARAMETER_MAX_LENGTH)
Expand Down

0 comments on commit 712a0e7

Please sign in to comment.