0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
coppermine
/
1.5.12-0
/
standard
/
htdocs
/
plugins
/
onlinestats
/
[
Home
]
File: schema.sql
## ******************************************** ## Coppermine Photo Gallery ## ************************ ## Copyright (c) 2003-2011 Coppermine Dev Team ## v1.0 originally written by Gregory Demar ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License version 3 ## as published by the Free Software Foundation. ## ## ******************************************** ## Coppermine version: 1.5.12 ## $HeadURL: https://coppermine.svn.sourceforge.net/svnroot/coppermine/trunk/cpg1.5.x/plugins/onlinestats/schema.sql $ ## $Revision: 8154 $ ## ******************************************** CREATE TABLE IF NOT EXISTS `CPG_mod_online` ( `user_id` int(11) NOT NULL default '0', `user_name` varchar(25) NOT NULL default '', `user_ip` tinytext NOT NULL, `last_action` datetime default NULL, PRIMARY KEY (`user_id`,`user_ip`(15)) ); INSERT IGNORE INTO CPG_config ( `name` , `value` ) VALUES ('record_online_users', ''), ('record_online_date', '');