From a3294c15beac19a56a26c7b91c6f5b11b983089a Mon Sep 17 00:00:00 2001 From: Marco Perberschlager Date: Tue, 8 Apr 2025 10:44:14 +0200 Subject: [PATCH 1/2] Added collation --- src/Installer.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Installer.php b/src/Installer.php index fce1001a0..5c8a1cbca 100644 --- a/src/Installer.php +++ b/src/Installer.php @@ -109,6 +109,9 @@ private function createTranslationTable(Schema $schema): void $translationDomainTable->addColumn('key', 'string', [ 'notnull' => true, 'length' => 190, + 'platformOptions' => [ + 'collation' => 'utf8mb4_bin' + ] ]); $translationDomainTable->addColumn('type', 'string', [ From e378b73034fd70c99fe615ca199d2138c63a6c7d Mon Sep 17 00:00:00 2001 From: mcop1 <89011527+mcop1@users.noreply.github.com> Date: Tue, 8 Apr 2025 09:12:21 +0000 Subject: [PATCH 2/2] Apply php-cs-fixer changes --- src/Installer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Installer.php b/src/Installer.php index 5c8a1cbca..ac013312d 100644 --- a/src/Installer.php +++ b/src/Installer.php @@ -110,8 +110,8 @@ private function createTranslationTable(Schema $schema): void 'notnull' => true, 'length' => 190, 'platformOptions' => [ - 'collation' => 'utf8mb4_bin' - ] + 'collation' => 'utf8mb4_bin', + ], ]); $translationDomainTable->addColumn('type', 'string', [