summaryrefslogtreecommitdiff
path: root/roundcubemail/SQL/mysql.initial.sql
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2007-10-10 06:38:23 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2007-10-10 06:38:23 +0000
commitc9daa3c8fa7687c853e9ad760a310084baffba26 (patch)
treef4d58daed0f65aaf897383704b635fee3a9d7d54 /roundcubemail/SQL/mysql.initial.sql
parent4910a2316ad05cccf3685c488195e7128d31a000 (diff)
Set prefs field in user table to null (#1484386)
git-svn-id: https://svn.roundcube.net/trunk@861 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/SQL/mysql.initial.sql')
-rw-r--r--roundcubemail/SQL/mysql.initial.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/SQL/mysql.initial.sql b/roundcubemail/SQL/mysql.initial.sql
index 4bba84c6a..926a83eab 100644
--- a/roundcubemail/SQL/mysql.initial.sql
+++ b/roundcubemail/SQL/mysql.initial.sql
@@ -92,7 +92,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 default '',
+ `preferences` text,
PRIMARY KEY (`user_id`)
);