summaryrefslogtreecommitdiff
path: root/SQL/mysql.update.sql
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2007-05-17 17:30:33 +0000
committerthomascube <thomas@roundcube.net>2007-05-17 17:30:33 +0000
commit5870871ae1f8a0f3b40436483a43cf3aafa35b2d (patch)
treef82db2bc48caa690ff9678b8aa652151c96b3d91 /SQL/mysql.update.sql
parenta549a9222a9368a2a0aa918232f25eaf7fcdb75f (diff)
Changed sql scripts to allow non-ascii chars in user names (#1483959)
Diffstat (limited to 'SQL/mysql.update.sql')
-rw-r--r--SQL/mysql.update.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/SQL/mysql.update.sql b/SQL/mysql.update.sql
index ef5f07d83..b64f407c7 100644
--- a/SQL/mysql.update.sql
+++ b/SQL/mysql.update.sql
@@ -9,3 +9,9 @@ ALTER TABLE `messages`
ALTER TABLE `identities`
ADD `html_signature` tinyint(1) default 0 NOT NULL;
+
+-- Uncomment these lines if you're using MySQL 4.1 or higher
+-- ALTER TABLE `users`
+-- DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci,
+-- CHANGE `username` `username` VARCHAR( 128 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
+-- CHANGE `alias` `alias` VARCHAR( 128 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL;