psa.log_actions

Overview
Column Descriptions

id

CREATE TABLE `log_actions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `date` datetime NOT NULL,
  `ip_address` varchar(39) CHARACTER SET ascii NOT NULL,
  `user` varchar(255) CHARACTER SET utf8 NOT NULL,
  `action_id` int(10) unsigned NOT NULL,
  `object_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `action_id` (`action_id`)
) ENGINE=InnoDB AUTO_INCREMENT=103939 DEFAULT CHARSET=latin1

Related documentation