32 lines
593 B
PHP
32 lines
593 B
PHP
<?php
|
|
|
|
/**
|
|
*
|
|
* @package phpBB Extension - mChat
|
|
* @copyright (c) 2016 dmzx - http://www.dmzx-web.net
|
|
* @copyright (c) 2016 kasimi - https://kasimi.net
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
*
|
|
*/
|
|
|
|
namespace dmzx\mchat\migrations;
|
|
|
|
use phpbb\db\migration\migration;
|
|
|
|
class mchat_2_0_0_rc5 extends migration
|
|
{
|
|
static public function depends_on()
|
|
{
|
|
return array(
|
|
'\dmzx\mchat\migrations\mchat_2_0_0_rc4',
|
|
);
|
|
}
|
|
|
|
public function update_data()
|
|
{
|
|
return array(
|
|
array('config.update', array('mchat_version', '2.0.0-RC5')),
|
|
);
|
|
}
|
|
}
|