summaryrefslogtreecommitdiff
path: root/db/statusnet.sql
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2009-11-12 11:08:43 -0800
committerBrion Vibber <brion@pobox.com>2009-11-12 11:08:43 -0800
commit81fa515881e42afe55379befa4e7d93313c90891 (patch)
treeb5d16054787cb85f64488ec647decd503e3f4306 /db/statusnet.sql
parentd8fe5224cb5628f1a281c7498a516e89992f6474 (diff)
Fix index on notice for efficient querying of notice(s) by order for a profile.
Should resolve performance problem with Profile::getCurrentNotice()
Diffstat (limited to 'db/statusnet.sql')
-rw-r--r--db/statusnet.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/statusnet.sql b/db/statusnet.sql
index 2983c67cf..732aded5a 100644
--- a/db/statusnet.sql
+++ b/db/statusnet.sql
@@ -130,7 +130,7 @@ create table notice (
location_id integer comment 'location id if possible',
location_ns integer comment 'namespace for location',
- index notice_profile_id_idx (profile_id),
+ index notice_profile_id_idx (profile_id,created,id),
index notice_conversation_idx (conversation),
index notice_created_idx (created),
index notice_replyto_idx (reply_to),