Lines 173-178
CREATE TABLE `action_logs` (
Link Here
|
173 |
`interface` varchar(30) DEFAULT NULL COMMENT 'the context this action was taken in', |
173 |
`interface` varchar(30) DEFAULT NULL COMMENT 'the context this action was taken in', |
174 |
`script` varchar(255) DEFAULT NULL COMMENT 'the name of the cron script that caused this change', |
174 |
`script` varchar(255) DEFAULT NULL COMMENT 'the name of the cron script that caused this change', |
175 |
`trace` text DEFAULT NULL COMMENT 'An optional stack trace enabled by ActionLogsTraceDepth', |
175 |
`trace` text DEFAULT NULL COMMENT 'An optional stack trace enabled by ActionLogsTraceDepth', |
|
|
176 |
`diff` LONGTEXT NULL DEFAULT NULL COMMENT 'Stores a diff of the changed object', |
176 |
PRIMARY KEY (`action_id`), |
177 |
PRIMARY KEY (`action_id`), |
177 |
KEY `timestamp_idx` (`timestamp`), |
178 |
KEY `timestamp_idx` (`timestamp`), |
178 |
KEY `user_idx` (`user`), |
179 |
KEY `user_idx` (`user`), |
179 |
- |
|
|