From: Shaun M. <sin...@us...> - 2006-02-04 04:18:34
|
Update of /cvsroot/phpwsbb/phpwsbb/boost In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25767 Modified Files: install.sql Log Message: Views count. Monitors default to off. Index: install.sql =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/boost/install.sql,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** install.sql 3 Oct 2004 23:17:39 -0000 1.22 --- install.sql 4 Feb 2006 04:18:24 -0000 1.23 *************** *** 39,42 **** --- 39,43 ---- locked smallint, replies int NOT NULL default '0', + views int NOT NULL default '0', lastpost int NOT NULL default '0', lastpost_post_id int NOT NULL default '0', *************** *** 97,103 **** max_avatar_width int NOT NULL default '90', max_avatar_size int NOT NULL default '6', ! use_signatures smallint NOT NULL default '1' ); ! INSERT INTO mod_phpwsbb_settings VALUES (1, 1, NULL, 'The thread [name] has been updated. Go to [url] to view it.', 0, 1, 1, 'Forums', 1, 'Latest Forum Posts', 5, 0, 1, 0, 90, 90, 6, 1); CREATE TABLE mod_phpwsbb_user_ranks ( --- 98,106 ---- max_avatar_width int NOT NULL default '90', max_avatar_size int NOT NULL default '6', ! use_signatures smallint NOT NULL default '1', ! use_views smallint NOT NULL default '0', ! use_low_priority smallint NOT NULL default '0' ); ! INSERT INTO mod_phpwsbb_settings VALUES (1, 1, NULL, 'The thread [name] has been updated. Go to [url] to view it.', 0, 1, 1, 'Forums', 1, 'Latest Forum Posts', 5, 0, 1, 0, 90, 90, 6, 1, 0, 0); CREATE TABLE mod_phpwsbb_user_ranks ( *************** *** 121,125 **** signature varchar(255) NOT NULL, suspendmonitors smallint NOT NULL default '0', ! monitordefault smallint NOT NULL default '1', PRIMARY KEY (user_id) ); --- 124,128 ---- signature varchar(255) NOT NULL, suspendmonitors smallint NOT NULL default '0', ! monitordefault smallint NOT NULL default '0', PRIMARY KEY (user_id) ); |