for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* Ideas extension for the phpBB Forum Software package.
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*/
namespace phpbb\ideas\migrations;
class m12_drop_base_url_config extends \phpbb\db\migration\migration
{
public function effectively_installed()
return !$this->config->offsetExists('ideas_base_url');
}
public static function depends_on()
return [
'\phpbb\ideas\migrations\m1_initial_schema',
'\phpbb\ideas\migrations\m5_base_url_config',
];
public function update_data()
['config.remove', ['ideas_base_url']],