Skip to content

Commit

Permalink
Merge pull request #9741 from lubitchv/9728-universe-variablemetadata
Browse files Browse the repository at this point in the history
increase "universe" in variablemetadata table from varchar 255 to text
  • Loading branch information
stevenwinship authored Jan 19, 2024
2 parents df318f0 + be56f48 commit 1f24f7c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions doc/release-notes/9728-universe-variablemetadata.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
universe field in variablemetadata table was changed from varchar(255) to text. The change was made to support longer strings in "universe" metadata field, similar to the rest of text fields in variablemetadata table.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public class VariableMetadata implements Serializable {
/**
* universe: metadata variable field.
*/
@Column(columnDefinition="TEXT")
private String universe;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- increase field universe from 255 to text
ALTER TABLE variablemetadata ALTER COLUMN universe TYPE text;

0 comments on commit 1f24f7c

Please sign in to comment.