File size: 551B
<?php
/**
*
* @package phpBB Extension - Image Upload
* @copyright (c) 2019 dmzx - https://www.dmzx-web.net
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
namespace dmzx\imageupload\migrations;
class imageupload_v109 extends \phpbb\db\migration\migration
{
static public function depends_on()
{
return [
'\dmzx\imageupload\migrations\imageupload_v108',
];
}
public function update_data()
{
return [
// Update config
['config.update', ['imageupload_system_version', '1.0.9']],
];
}
}