diff options
author | zotlabs <mike@macgirvin.com> | 2018-02-16 16:42:45 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-02-16 16:42:45 -0800 |
commit | 4e6072fb292dafea788baf70ad69d14d25119dac (patch) | |
tree | 99349214b914bb8cabf754ba8e4c093c5b5ceeeb /install | |
parent | f492f808f4861ae9937dcaf3bf8476513ae1c091 (diff) | |
parent | 547ef772ab1bcdf9cff1ad6d0593f3d27bb33d73 (diff) | |
download | volse-hubzilla-4e6072fb292dafea788baf70ad69d14d25119dac.tar.gz volse-hubzilla-4e6072fb292dafea788baf70ad69d14d25119dac.tar.bz2 volse-hubzilla-4e6072fb292dafea788baf70ad69d14d25119dac.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
Diffstat (limited to 'install')
-rw-r--r-- | install/schema_mysql.sql | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index aa0ea0178..8d1c8d648 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -652,6 +652,8 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `uid_created` (`uid`, `created`), KEY `uid_item_unseen` (`uid`, `item_unseen`), KEY `uid_item_type` (`uid`, `item_type`), + KEY `uid_item_thread_top` (`uid`, `item_thread_top`), + KEY `uid_item_blocked` (`uid`, `item_blocked`), KEY `aid` (`aid`), KEY `owner_xchan` (`owner_xchan`), KEY `author_xchan` (`author_xchan`), @@ -680,7 +682,6 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `item_starred` (`item_starred`), KEY `item_uplink` (`item_uplink`), KEY `item_wall` (`item_wall`), - KEY `item_thread_top` (`item_thread_top`), KEY `item_notshown` (`item_notshown`), KEY `item_nsfw` (`item_nsfw`), KEY `item_relay` (`item_relay`), @@ -690,7 +691,8 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `item_verified` (`item_verified`), KEY `item_retained` (`item_retained`), KEY `item_rss` (`item_rss`), - KEY `item_consensus` (`item_consensus`) + KEY `item_consensus` (`item_consensus`), + KEY `item_deleted_pending_remove_changed` (`item_deleted`, `item_pending_remove`, `changed`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; CREATE TABLE IF NOT EXISTS `item_id` ( |