From e6807e1043ce6dedfe215d9f118862a8a064b138 Mon Sep 17 00:00:00 2001 From: JT Smith Date: Wed, 17 May 2006 21:41:24 +0000 Subject: [PATCH] fix [ 1488850 ] Collaboration front page slow to load --- docs/changelog/6.x.x.txt | 3 +++ docs/upgrades/upgrade_6.99.0-6.99.1.pl | 1 + 2 files changed, 4 insertions(+) diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt index 3008b53de..93bc12788 100644 --- a/docs/changelog/6.x.x.txt +++ b/docs/changelog/6.x.x.txt @@ -23,6 +23,9 @@ - fix [ Add user to group ] typo in www_manageUsersInGroup - Added two new mail posting properties to the collaboration system to get around a couple of problems clients have brought up. + - fix [ 1435382 ] 6.8.6 always "unsubscribe" link for Admin + - fix [ 1488850 ] Collaboration front page slow to load + - The CS main listing is now 863% faster. 6.99.0 - Added an Events Management System asset that can help people run diff --git a/docs/upgrades/upgrade_6.99.0-6.99.1.pl b/docs/upgrades/upgrade_6.99.0-6.99.1.pl index 3e363af9c..cfebeb16f 100644 --- a/docs/upgrades/upgrade_6.99.0-6.99.1.pl +++ b/docs/upgrades/upgrade_6.99.0-6.99.1.pl @@ -31,6 +31,7 @@ sub csFixes { print "\tFixing CS stuff.\n" unless ($quiet); $session->db->write("alter table Collaboration add column autoSubscribeToThread int not null default 1"); $session->db->write("alter table Collaboration add column requireSubscriptionForEmailPosting int not null default 1"); + $session->db->write("alter table Thread_read add index threadId_userId (threadId,userId)"); } #-------------------------------------------------