Index the verb column since we do COUNT(*) based on it

This commit is contained in:
Mikael Nordfeldth 2016-01-07 11:39:46 +01:00
parent 05d3622939
commit 94392ab00c
1 changed files with 1 additions and 0 deletions

View File

@ -110,6 +110,7 @@ class Notice extends Managed_DataObject
'notice_profile_id_idx' => array('profile_id', 'created', 'id'),
'notice_repeat_of_created_id_idx' => array('repeat_of', 'created', 'id'),
'notice_conversation_created_id_idx' => array('conversation', 'created', 'id'),
'notice_verb_idx' => array('verb'),
'notice_replyto_idx' => array('reply_to')
)
);