for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* Topic Image Preview. An extension for the phpBB Forum Software package.
* @copyright (c) 2017, Matt Friedman
* @license GNU General Public License, version 2 (GPL-2.0)
*/
namespace vse\topicimagepreview\migrations;
class install_tip extends \phpbb\db\migration\migration
{
public function effectively_installed()
return $this->config->offsetExists('vse_tip_new');
}
public static function depends_on()
return ['\phpbb\db\migration\data\v320\v320'];
public function update_data()
return [
['config.add', ['vse_tip_new', 1]],
['config.add', ['vse_tip_num', 3]],
['config.add', ['vse_tip_dim', 200]],
];