1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-19 07:00:14 +01:00

Merge pull request #4832 from marc1706/ticket/15226

[ticket/15226] Add index for latest topics to topics table

* github.com:phpbb/phpbb:
  [ticket/15226] Add index for latest topics to topics table
This commit is contained in:
Tristan Darricau 2017-05-12 17:27:01 +02:00
commit 0984dbb3f8
No known key found for this signature in database
GPG Key ID: 817043C2E29DB881

View File

@ -0,0 +1,51 @@
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
namespace phpbb\db\migration\data\v31x;
class add_latest_topics_index extends \phpbb\db\migration\migration
{
static public function depends_on()
{
return array(
'\phpbb\db\migration\data\v31x\v3110',
);
}
public function update_schema()
{
return array(
'add_index' => array(
$this->table_prefix . 'topics' => array(
'latest_topics' => array(
'forum_id',
'topic_last_post_time',
'topic_last_post_id',
'topic_moved_id',
),
),
),
);
}
public function revert_schema()
{
return array(
'drop_keys' => array(
$this->table_prefix . 'topics' => array(
'latest_topics',
),
),
);
}
}