diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-09-16 10:11:59 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-09-16 10:11:59 +0200 |
commit | d5ffa5508d4c04be801d049b63ae6881460abe82 (patch) | |
tree | 4e52797a39add8e7662d06028c0b25584c432561 /install/schema_postgres.sql | |
parent | cb3fb0049f64a92668bc94746dc55cc905683699 (diff) | |
download | volse-hubzilla-d5ffa5508d4c04be801d049b63ae6881460abe82.tar.gz volse-hubzilla-d5ffa5508d4c04be801d049b63ae6881460abe82.tar.bz2 volse-hubzilla-d5ffa5508d4c04be801d049b63ae6881460abe82.zip |
db update to add index to item.resource_id we query this in wikis a lot
Diffstat (limited to 'install/schema_postgres.sql')
-rw-r--r-- | install/schema_postgres.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql index 381c262a7..65acb644b 100644 --- a/install/schema_postgres.sql +++ b/install/schema_postgres.sql @@ -627,6 +627,7 @@ create index "item_comments_closed" on item ("comments_closed"); create index "item_aid" on item ("aid"); create index "item_owner_xchan" on item ("owner_xchan"); create index "item_author_xchan" on item ("author_xchan"); +create index "item_resource_id" on item ("resource_id"); create index "item_resource_type" on item ("resource_type"); create index "item_restrict" on item ("item_restrict"); create index "item_flags" on item ("item_flags"); |