summaryrefslogtreecommitdiff
path: root/schema/ttrss_schema_pgsql.sql
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2010-11-13 19:26:29 +0300
committerAndrew Dolgov <[email protected]>2010-11-13 19:26:29 +0300
commit90c9c16f0e96ed08ce6ad93159f2aa8052acb1af (patch)
tree6ccd6aa7d33fbd8caa85fc9239e40c8f66212c53 /schema/ttrss_schema_pgsql.sql
parent428b704dbcd4d0869e5d3455eda9b7fbda5c221e (diff)
schema: add index on ttrss_tags
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 152af5dd3..9c20681ad 100644
--- a/schema/ttrss_schema_pgsql.sql
+++ b/schema/ttrss_schema_pgsql.sql
@@ -215,6 +215,7 @@ create table ttrss_tags (id serial not null primary key,
post_int_id integer references ttrss_user_entries(int_id) ON DELETE CASCADE not null);
create index ttrss_tags_owner_uid_index on ttrss_tags(owner_uid);
+create index ttrss_tags_post_int_id_idx on ttrss_tags(post_int_id);
create table ttrss_version (schema_version int not null);