psa.actions
Overview
The actions
table contains a list of actions that can be performed on the server
Column Descriptions
id – links to action_id
in log_actions
table
name – short name for the action
descr – long description of the action
enabled – true
if the action is enabled, otherwise false
Table Structure
CREATE TABLE `actions` ( `id` int(10) unsigned NOT NULL auto_increment, `name` varchar(255) character set ascii NOT NULL default '', `descr` varchar(255) character set utf8 NOT NULL default '', `enabled` enum('false','true') NOT NULL default 'true', PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=latin1 |