[RSS Feed/News] ChangeLog entity lacks default values or required attributes on old_value/new_value

Status
Not open for further replies.

XenForo

Administrative
  • Thread starter
  • Admin
  • #1
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

ادامه مطلب...
 
Status
Not open for further replies.
Back
Top Bottom