From 0392c6002cf1ab98cb2a3aee4a5a0d884831c2b9 Mon Sep 17 00:00:00 2001 From: Victor Bocharsky Date: Wed, 7 Aug 2019 18:50:45 +0300 Subject: [PATCH] Replace utf8_bin collation with utf8mb4_bin in example --- doctrine/pdo_session_storage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doctrine/pdo_session_storage.rst b/doctrine/pdo_session_storage.rst index ea8110c2054..fe6081d1c06 100644 --- a/doctrine/pdo_session_storage.rst +++ b/doctrine/pdo_session_storage.rst @@ -255,7 +255,7 @@ MySQL `sess_data` BLOB NOT NULL, `sess_time` INTEGER UNSIGNED NOT NULL, `sess_lifetime` MEDIUMINT NOT NULL - ) COLLATE utf8_bin, ENGINE = InnoDB; + ) COLLATE utf8mb4_bin, ENGINE = InnoDB; .. note::