diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-14 07:42:20 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-14 07:42:20 +0000 |
commit | 652cc48b772c3fcc4f932afecf29741ab3e632a7 (patch) | |
tree | 792ed667b84fd7f4b7816b8b58be05bf1bb41937 | |
parent | b5f48e4ab377e81d295226fe2eb51bfe9f023fe5 (diff) |
change the display name to a varchar
-rw-r--r-- | modules/user/helpers/user_installer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/helpers/user_installer.php b/modules/user/helpers/user_installer.php index 6b74200c..bdb0d594 100644 --- a/modules/user/helpers/user_installer.php +++ b/modules/user/helpers/user_installer.php @@ -30,7 +30,7 @@ class user_installer { $db->query("CREATE TABLE IF NOT EXISTS `users` ( `id` int(9) NOT NULL auto_increment, `name` varchar(255) NOT NULL, - `display_name` char(255) NOT NULL, + `display_name` varchar(255) NOT NULL, `password` varchar(128) NOT NULL, `login_count` int(10) unsigned NOT NULL DEFAULT 0, `last_login` int(10) unsigned NOT NULL DEFAULT 0, |