Skip to content

Commit

Permalink
fix: unable to use OO 8.2 with arabic language - EXO-76393
Browse files Browse the repository at this point in the history
Before this fix, when the platform is configured in arabic we are unable to open OO for a document
This is due to collation problem on column EDITOR_PAGE_LAST_MODIFIED : OO send last modidied date in arabic, which cannot be store with latin1 charset

This commit update the charset for this column
  • Loading branch information
rdenarie committed Jan 9, 2025
1 parent 02fdf74 commit 11d4c89
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,8 @@
<sql>ALTER TABLE OO_EDITOR_CONFIG MODIFY COLUMN DOCUMENT_TITLE varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin;</sql>
</changeSet>

<changeSet id="1.0.0-7" author="onlyoffice" dbms="mysql">
<sql>ALTER TABLE OO_EDITOR_CONFIG MODIFY COLUMN EDITOR_PAGE_LAST_MODIFIED varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci;</sql>
</changeSet>

</databaseChangeLog>

0 comments on commit 11d4c89

Please sign in to comment.