Conversation Improvements by Xon

xF2 Add-on Conversation Improvements by Xon 2.4.6

No permission to download
NulledTeam - XF1 version

Q. Installing fails with a 504 error
A. Please manually add the requires columns:
Code:
ALTER TABLE `xf_conversation_message`
  ADD COLUMN `edit_count` int not null default 0,
  ADD COLUMN `last_edit_date` int not null default 0,
  ADD COLUMN `last_edit_user_id` int not null default 0;
ALTER TABLE `xf_conversation_master`
  ADD COLUMN `conversation_edit_count` int not null default 0,
  ADD COLUMN `conversation_last_edit_date` int not null default 0,
  ADD COLUMN `conversation_last_edit_user_id` int not null default 0;