1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 20:30:39 +02:00

agent added to online table for easier detection of bots

This commit is contained in:
CaMer0n
2009-12-24 10:00:30 +00:00
parent 2ae50931ea
commit 1e15f1c92b
3 changed files with 26 additions and 10 deletions

View File

@@ -9,8 +9,8 @@
* Core SQL
*
* $Source: /cvs_backup/e107_0.8/e107_admin/sql/core_sql.php,v $
* $Revision: 1.45 $
* $Date: 2009-12-15 11:51:02 $
* $Revision: 1.46 $
* $Date: 2009-12-24 10:00:30 $
* $Author: e107coders $
*/
@@ -354,7 +354,8 @@ CREATE TABLE online (
online_ip varchar(45) NOT NULL default '',
online_location text NOT NULL,
online_pagecount tinyint(3) unsigned NOT NULL default '0',
online_active int(10) unsigned NOT NULL default '0'
online_active int(10) unsigned NOT NULL default '0',
online_agent varchar(255) NOT NULL default ''
) TYPE=MyISAM;
# --------------------------------------------------------