psa.log_actions
Overview
The log_actions
table contains a log of actions performed within the Plesk interface.
Column Descriptions
id – primary key that is automatically incremented
date – timestamp of when the action occurred
ip_address – the user’s IP address
user – the user that performed the action
action_id – links to id
in actions
table
object_id – what object the action acted upon, could relate to domains
, clients
, mail
, etc
Table Structure
CREATE TABLE `log_actions` ( `id` int(10) unsigned NOT NULL auto_increment, `date` datetime NOT NULL default '0000-00-00 00:00:00', `ip_address` varchar(15) character set ascii NOT NULL default '', `user` varchar(255) character set utf8 NOT NULL default '', `action_id` int(10) unsigned NOT NULL default '0', `object_id` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `action_id` (`action_id`) ) ENGINE=InnoDB AUTO_INCREMENT=7743 DEFAULT CHARSET=latin1 |