psa.log_components
Overview
The log_components
table contains a log of actions that changed data for components in Plesk.
Column Descriptions
action_id – links to id
in actions
table
component – actual component changed
old_value – what the value was before the change
new_value – the new value after the change
Table Structure
CREATE TABLE `log_components` ( `action_id` int(10) unsigned NOT NULL default '0', `component` varchar(245) character set ascii NOT NULL default '', `old_value` varbinary(255) NOT NULL default ' ', `new_value` varbinary(255) NOT NULL default ' ', PRIMARY KEY (`action_id`,`component`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 |