Fix security questions encoding issue

This commit is contained in:
Pierre HUBERT 2020-03-22 14:20:41 +01:00
parent 74e6549897
commit d6bd7966fb

View File

@ -522,10 +522,10 @@ CREATE TABLE `utilisateurs` (
`affiche_chat` int(11) NOT NULL DEFAULT '0', `affiche_chat` int(11) NOT NULL DEFAULT '0',
`public` int(11) NOT NULL DEFAULT '0', `public` int(11) NOT NULL DEFAULT '0',
`pageouverte` int(11) NOT NULL DEFAULT '0', `pageouverte` int(11) NOT NULL DEFAULT '0',
`question1` varchar(255) DEFAULT NULL, `question1` varchar(255) CHARACTER SET utf8mb4 DEFAULT NULL,
`reponse1` varchar(255) DEFAULT NULL, `reponse1` varchar(255) CHARACTER SET utf8mb4 DEFAULT NULL,
`question2` varchar(255) DEFAULT NULL, `question2` varchar(255) CHARACTER SET utf8mb4 DEFAULT NULL,
`reponse2` varchar(255) DEFAULT NULL, `reponse2` varchar(255) CHARACTER SET utf8mb4 DEFAULT NULL,
`bloquecommentaire` int(11) NOT NULL DEFAULT '0', `bloquecommentaire` int(11) NOT NULL DEFAULT '0',
`last_activity` int(11) NOT NULL DEFAULT '1', `last_activity` int(11) NOT NULL DEFAULT '1',
`bloquenotification` int(11) NOT NULL DEFAULT '1', `bloquenotification` int(11) NOT NULL DEFAULT '1',