Skip to content

Commit

Permalink
Allow Chinese characters to be shown on user's info column (#701)
Browse files Browse the repository at this point in the history
In order to support also Chinese characters, charset and collation of info_val column in saved_user_auth_info table have been moved from latin1 to utf8 aligning them to the table values.
  • Loading branch information
rmiccoli authored Mar 11, 2024
1 parent 22cb4e1 commit 21845a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-- Nothing to do because H2 already supports Unicode
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE saved_user_auth_info MODIFY info_val varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;

0 comments on commit 21845a8

Please sign in to comment.