mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 08:47:45 +02:00
Fix bug #44665 - Add index on log_time to the log table to prevent slowdown on boards with many log entries.
Authorised by: acydburn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9564 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -678,8 +678,14 @@ function database_update_info()
|
||||
// No changes from 3.0.5-RC1 to 3.0.5
|
||||
'3.0.5-RC1' => array(),
|
||||
|
||||
// No changes from 3.0.5
|
||||
'3.0.5' => array(),
|
||||
// Changes from 3.0.5
|
||||
'3.0.5' => array(
|
||||
'add_index' => array(
|
||||
LOG_TABLE => array(
|
||||
'log_time' => array('log_time'),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user