summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-07-11 12:52:59 +0400
committerAndrew Dolgov <[email protected]>2012-07-11 12:52:59 +0400
commit44f1eeed563494fe7946373872a457ccd2c17ab4 (patch)
treea87dcde2cc0316eaf8d652c50b0e18ffc870409b /schema/ttrss_schema_pgsql.sql
parent2ced2bb8048012cb6290f77921e0f90a9419f59d (diff)
add ttrss_feeds_cat_id_idx
Diffstat (limited to 'schema/ttrss_schema_pgsql.sql')
-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 74faa1a06..3e0d800c9 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -86,6 +86,7 @@ create table ttrss_feeds (id serial not null primary key,
auth_pass_encrypted boolean not null default false);
create index ttrss_feeds_owner_uid_index on ttrss_feeds(owner_uid);
+create index ttrss_feeds_cat_id_idx on ttrss_feeds(cat_id);
insert into ttrss_feeds (owner_uid, title, feed_url) values
(1, 'Tiny Tiny RSS: New Releases', 'http://tt-rss.org/releases.rss');