summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-03-21 05:52:56 +0100
committerAndrew Dolgov <[email protected]>2006-03-21 05:52:56 +0100
commit44e241cb44eb2c309b6def732d828368a7486824 (patch)
tree97fa784cdf86c13e737e0f76667f693a0bf7bc01 /schema
parent03f321db5741ce20dc484629b42908463ce6f284 (diff)
query optimizations; split big feed update transaction
Diffstat (limited to 'schema')
-rw-r--r--schema/ttrss_schema_pgsql.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/schema/ttrss_schema_pgsql.sql b/schema/ttrss_schema_pgsql.sql
index 7013228fb..a4a711078 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -83,6 +83,7 @@ create table ttrss_entries (id serial not null primary key,
create index ttrss_entries_guid_index on ttrss_entries(guid);
create index ttrss_entries_title_index on ttrss_entries(title);
+create index ttrss_entries_date_entered_index on ttrss_entries(date_entered);
create table ttrss_user_entries (
int_id serial not null primary key,