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;