diff options
author | Andrew Manning <tamanning@zoho.com> | 2018-02-20 21:11:59 -0500 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2018-02-20 21:11:59 -0500 |
commit | 8e5c1135c3e2644ea8501eda067e2b994faa44ab (patch) | |
tree | 6b72038214359dcf8eff040a68874583e7174800 /install/schema_mysql.sql | |
parent | 89a825cd038df7da609d64ef0254ba58caaede31 (diff) | |
parent | 85a6dd60316eefbdaf072e59621d681a3cf2546b (diff) | |
download | volse-hubzilla-8e5c1135c3e2644ea8501eda067e2b994faa44ab.tar.gz volse-hubzilla-8e5c1135c3e2644ea8501eda067e2b994faa44ab.tar.bz2 volse-hubzilla-8e5c1135c3e2644ea8501eda067e2b994faa44ab.zip |
Merge branch 'dev' into oauth2
Diffstat (limited to 'install/schema_mysql.sql')
-rw-r--r-- | install/schema_mysql.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install/schema_mysql.sql b/install/schema_mysql.sql index 8d1c8d648..36cd2539b 100644 --- a/install/schema_mysql.sql +++ b/install/schema_mysql.sql @@ -654,6 +654,9 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `uid_item_type` (`uid`, `item_type`), KEY `uid_item_thread_top` (`uid`, `item_thread_top`), KEY `uid_item_blocked` (`uid`, `item_blocked`), + KEY `uid_item_wall` (`uid`, `item_wall`), + KEY `uid_item_starred` (`uid`, `item_starred`), + KEY `uid_item_retained` (`uid`, `item_retained`), KEY `aid` (`aid`), KEY `owner_xchan` (`owner_xchan`), KEY `author_xchan` (`author_xchan`), @@ -679,9 +682,7 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `changed` (`changed`), KEY `item_origin` (`item_origin`), KEY `item_unseen` (`item_unseen`), - KEY `item_starred` (`item_starred`), KEY `item_uplink` (`item_uplink`), - KEY `item_wall` (`item_wall`), KEY `item_notshown` (`item_notshown`), KEY `item_nsfw` (`item_nsfw`), KEY `item_relay` (`item_relay`), @@ -689,7 +690,6 @@ CREATE TABLE IF NOT EXISTS `item` ( KEY `item_nocomment` (`item_nocomment`), KEY `item_obscured` (`item_obscured`), KEY `item_verified` (`item_verified`), - KEY `item_retained` (`item_retained`), KEY `item_rss` (`item_rss`), KEY `item_consensus` (`item_consensus`), KEY `item_deleted_pending_remove_changed` (`item_deleted`, `item_pending_remove`, `changed`) |