Theme editor

Conversation Improvements by Xon

| XF 2.3 Add-ons (Free) Conversation Improvements by Xon 2.5.1

No permission to download
Q. Installing fails with a 504 error
A. Please manually add the requires columns:
SQL:
Expand Collapse Copy
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