From 86a8a74781f98726c5bea7a499ff90ad478e4682 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 2 Nov 2004 20:27:08 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=4476 --- checkin_notes | 6 ++++++ db/schema.sql | 5 ++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/checkin_notes b/checkin_notes index 7d7fa95ae0..e12d6cdb3b 100755 --- a/checkin_notes +++ b/checkin_notes @@ -19019,3 +19019,9 @@ David 1 Nov 2004 util.C user/ download.inc + +David 2 Nov 2004 + - update schema.sql with forum-related changes + + db/ + schema.sql diff --git a/db/schema.sql b/db/schema.sql index 27a5f0a876..781a9a742d 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -387,8 +387,11 @@ create table forum_preferences ( link_popup tinyint(1) unsigned not null default 0, mark_as_read_timestamp integer not null default 0, special_user integer not null default 0, - jump_to_unread tinyint(1) unsigned not null default 1, + jump_to_unread tinyint(1) unsigned not null default 0, hide_signatures tinyint(1) unsigned not null default 0, + rated_posts varchar(254) not null, + low_rating_threshold integer not null, + high_rating_threshold integer not null, primary key (userid) ) type=MyISAM;