psa.sessions
Overview
The sessions table contains information about the current Plesk sessions.
Column Descriptions
sess_id - the unique session identifier
type - currently unknown
login - username that is logged in
ip_address - IP address where user logged in from
login_time - when the user first logged in
click_time - the last time the user clicked something in Plesk
Table Structure
CREATE TABLE `sessions` ( `sess_id` VARCHAR(33) character SET ASCII COLLATE ascii_bin NOT NULL DEFAULT '', `type` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0', `login` VARCHAR(255) character SET utf8 NOT NULL DEFAULT '', `ip_address` VARCHAR(15) character SET ASCII NOT NULL DEFAULT '', `login_time` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00', `click_time` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP on UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`sess_id`) ) ENGINE=INNODB DEFAULT CHARSET=latin1