
Originally Posted by
Ajeh
Go to the Tools ... Install SQL Patches ...
PHP Code:
ALTER TABLE admin_activity_log CHANGE page_parameters page_parameters TINYTEXT NULL DEFAULT NULL;
Does this correct the problem?
In my case, I was seeing the same error, but tinytext wasn't large enough, so instead I did the alter table like so...
PHP Code:
ALTER TABLE admin_activity_log CHANGE page_parameters page_parameters TEXT NULL DEFAULT NULL;
Perhaps TEXT is too big, but I was lazy and just wanted it to work without too many steps.
Bookmarks