From 11d4c8951166ccd5e3968e91a28d707a536a5cb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20D=C3=A9nari=C3=A9?= Date: Thu, 9 Jan 2025 10:45:43 +0100 Subject: [PATCH] fix: unable to use OO 8.2 with arabic language - EXO-76393 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 --- .../resources/db.changelogs/onlyoffice-changelog-1.0.0.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/services/src/main/resources/db.changelogs/onlyoffice-changelog-1.0.0.xml b/services/src/main/resources/db.changelogs/onlyoffice-changelog-1.0.0.xml index 9d4bf87d..b0f5c519 100644 --- a/services/src/main/resources/db.changelogs/onlyoffice-changelog-1.0.0.xml +++ b/services/src/main/resources/db.changelogs/onlyoffice-changelog-1.0.0.xml @@ -122,4 +122,8 @@ ALTER TABLE OO_EDITOR_CONFIG MODIFY COLUMN DOCUMENT_TITLE varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin; + + ALTER TABLE OO_EDITOR_CONFIG MODIFY COLUMN EDITOR_PAGE_LAST_MODIFIED varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci; + +