summaryrefslogtreecommitdiff
path: root/db/statusnet_pg.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_pg.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_pg.sql')
-rw-r--r--db/statusnet_pg.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/statusnet_pg.sql b/db/statusnet_pg.sql
index 392a6a5f3..7b0e5313c 100644
--- a/db/statusnet_pg.sql
+++ b/db/statusnet_pg.sql
@@ -137,7 +137,7 @@ create table notice (
/* FULLTEXT(content) */
);
-create index notice_profile_id_idx on notice using btree(profile_id);
+create index notice_profile_id_idx on notice using btree(profile_id,created,id);
create index notice_created_idx on notice using btree(created);
create table notice_source (