Conversation Improvements by Xon

Add-ons Conversation Improvements by Xon 2.4.6

Register & Get access to index
Q. Installing fails with a 504 error
A. Please manually add the requires columns:
SQL:
ALTER TABLE `xf_conversation_message`
  ADD COLUMN `edit_count` int unsigned not null default 0,
  ADD COLUMN `last_edit_date` int unsigned not null default 0,
  ADD COLUMN `last_edit_user_id` int unsigned not null default 0;
ALTER TABLE `xf_conversation_master`
  ADD COLUMN `edit_count` int unsigned not null default 0,
  ADD COLUMN `last_edit_date` int unsigned  not null default 0,
  ADD COLUMN `last_edit_user_id` int unsigned not null default 0;
Back
Top Bottom