From d5ae9772c1427dbbcf1cb7582106dd1d542bc26e Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Tue, 06 Sep 2011 13:18:12 -0400 Subject: [PATCH] - Fix username case-insensitivity issue in MySQL (#1488021) --- SQL/mysql.update.sql | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/SQL/mysql.update.sql b/SQL/mysql.update.sql index afeb3a5..7f8ce61 100644 --- a/SQL/mysql.update.sql +++ b/SQL/mysql.update.sql @@ -147,6 +147,9 @@ -- Updates from version 0.6-stable +ALTER TABLE `users` CHANGE `alias` `alias` varchar(128) BINARY NOT NULL; +ALTER TABLE `users` CHANGE `username` `username` varchar(128) BINARY NOT NULL; + CREATE TABLE `dictionary` ( `user_id` int(10) UNSIGNED DEFAULT NULL, `language` varchar(5) NOT NULL, -- Gitblit v1.9.1