Skip to content

Commit

Permalink
feat: Allow to add Emoji in spaces - MEED-4267 - Meeds-io/meeds#1777 (#…
Browse files Browse the repository at this point in the history
…881)

This change will allow to add emojis in Page Name, especially when the
space name defines emojis. A special SQL modification is needed to make
it possible on MySQL.
  • Loading branch information
boubaker committed May 3, 2024
1 parent fc22e82 commit 40dda96
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -452,4 +452,10 @@
</addColumn>
</changeSet>

<changeSet author="portal" id="1.0.0-41" dbms="mysql">
<sql>
ALTER TABLE PORTAL_PAGES MODIFY COLUMN DISPLAY_NAME varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
</sql>
</changeSet>

</databaseChangeLog>

0 comments on commit 40dda96

Please sign in to comment.