Commit info for scoop/struct:
Modified Files:
Tag: CURRENT
scoop.sql
Log Message:
Once again, trying to get CURRENT synced with the main Scoop branch. -j
Index: scoop.sql
===================================================================
RCS file: /cvs/scoop/scoop/struct/scoop.sql,v
retrieving revision 1.173
retrieving revision 1.173.2.1
diff -r1.173 -r1.173.2.1
1470a1471,1472
> INSERT INTO vars VALUES ('use_whosonline','0','Enable using a database table to
> keep track of who\'s online and the number of visitors?','bool','General');
1489a1492,1501
> --
> -- Table structure for table 'whos_online'
> --
>
> CREATE TABLE whos_online (
> ip varchar(16) NOT NULL default '',
> uid int(11) NOT NULL default '0',
> last_visit timestamp NOT NULL default '0000-00-00 00:00:00',
> PRIMARY KEY (ip)
> );