Skip to content

Commit

Permalink
fix: Allow to add Emoji in Group Label - MEED-6777 - Meeds-io/meeds#1946
Browse files Browse the repository at this point in the history
 (#885)

Prior to this change, the Group display name doesn't allow to have
emojis in MySQL. This change modifies IDM TEXT_VALUE definition to allow
it.
  • Loading branch information
boubaker committed May 6, 2024
1 parent 40dda96 commit f73ab91
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -426,4 +426,10 @@
<sql>SELECT setval('JBID_REALM_ID_SEQ', (SELECT MAX(ID) FROM JBID_REALM))</sql>
</changeSet>

<changeSet author="idm" id="1.0.0-21" dbms="mysql">
<sql>
ALTER TABLE jbid_io_attr_text_values MODIFY COLUMN ATTR_VALUE VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
</sql>
</changeSet>

</databaseChangeLog>

0 comments on commit f73ab91

Please sign in to comment.