Version 2.1.3

This commit is contained in:
dmzx
2019-08-29 08:41:42 +02:00
parent 940161da23
commit 4d7253f0f0
11 changed files with 149 additions and 69 deletions

View File

@@ -0,0 +1,31 @@
<?php
/**
*
* @package phpBB Extension - mChat
* @copyright (c) 2019 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_1_3 extends migration
{
public static function depends_on()
{
return [
'\dmzx\mchat\migrations\mchat_2_1_2',
];
}
public function update_data()
{
return [
['config.update', ['mchat_version', '2.1.3']],
['config.add', ['mchat_flood_messages', 0]],
];
}
}