From d6bd7966fb08d87bd9ffab4deb06cface59ba701 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Sun, 22 Mar 2020 14:20:41 +0100 Subject: [PATCH] Fix security questions encoding issue --- db_struct.sql | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/db_struct.sql b/db_struct.sql index 09846f3..c425409 100644 --- a/db_struct.sql +++ b/db_struct.sql @@ -522,10 +522,10 @@ CREATE TABLE `utilisateurs` ( `affiche_chat` int(11) NOT NULL DEFAULT '0', `public` int(11) NOT NULL DEFAULT '0', `pageouverte` int(11) NOT NULL DEFAULT '0', - `question1` varchar(255) DEFAULT NULL, - `reponse1` varchar(255) DEFAULT NULL, - `question2` varchar(255) DEFAULT NULL, - `reponse2` varchar(255) DEFAULT NULL, + `question1` varchar(255) CHARACTER SET utf8mb4 DEFAULT NULL, + `reponse1` varchar(255) CHARACTER SET utf8mb4 DEFAULT NULL, + `question2` varchar(255) CHARACTER SET utf8mb4 DEFAULT NULL, + `reponse2` varchar(255) CHARACTER SET utf8mb4 DEFAULT NULL, `bloquecommentaire` int(11) NOT NULL DEFAULT '0', `last_activity` int(11) NOT NULL DEFAULT '1', `bloquenotification` int(11) NOT NULL DEFAULT '1',