X
Xon
Guest
xf_change_log
has the schema;SQL:
Code:
CREATE TABLE `xf_change_log` (
`log_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`content_type` varbinary(25) NOT NULL,
`content_id` int(10) unsigned NOT NULL,
`edit_user_id` int(10) unsigned NOT NULL,
`edit_date` int(10) unsigned NOT NULL,
`field` varchar(100) NOT NULL DEFAULT '',
`old_value` text NOT NULL,
`new_value` text NOT NULL,
`protected` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`log_id`),
KEY `edit_date`...
Read more
Continue reading...