Version 2.0.0-RC5

This commit is contained in:
dmzx
2016-04-04 22:08:48 +02:00
parent 1404928202
commit 0d71f9f3f7
5 changed files with 72 additions and 25 deletions

View File

@@ -0,0 +1,29 @@
<?php
/**
*
* @package phpBB Extension - mChat
* @copyright (c) 2016 dmzx - http://www.dmzx-web.net
* @copyright (c) 2016 kasimi
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
namespace dmzx\mchat\migrations;
class mchat_2_0_0_rc5 extends \phpbb\db\migration\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')),
);
}
}