diff options
author | thomascube <thomas@roundcube.net> | 2007-04-28 17:59:11 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-04-28 17:59:11 +0000 |
commit | 9e5d051e97441794d765b094ed46d8cc732c3944 (patch) | |
tree | e1444eb13c286736f9162e8bb4fb02b2ac9ef1ae /SQL/mysql5.initial.sql | |
parent | f15c26869cbdc73090955967bd104b5cf5fe119b (diff) |
Set default value for col preferences; fix bug #1483978
Diffstat (limited to 'SQL/mysql5.initial.sql')
-rw-r--r-- | SQL/mysql5.initial.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SQL/mysql5.initial.sql b/SQL/mysql5.initial.sql index ae155e1d0..fb1d69e4b 100644 --- a/SQL/mysql5.initial.sql +++ b/SQL/mysql5.initial.sql @@ -29,7 +29,7 @@ CREATE TABLE `users` ( `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `last_login` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `language` varchar(5) NOT NULL DEFAULT 'en', - `preferences` text NOT NULL, + `preferences` text NOT NULL DEFAULT '', PRIMARY KEY(`user_id`) ) TYPE=MYISAM CHARACTER SET ascii COLLATE ascii_general_ci; |