diff options
author | rxu <rxu@mail.ru> | 2019-05-18 17:28:01 +0700 |
---|---|---|
committer | rxu <rxu@mail.ru> | 2019-05-18 17:28:01 +0700 |
commit | e3b76bce373e0df73de7d2600cd596d436aedb32 (patch) | |
tree | 5091a1793e3b0ff1d1a8b2ebcbcfda052b77fc70 /phpBB/phpbb/db/migration | |
parent | 8142257e31d3e72784e26e337afffbbc5260ec37 (diff) | |
download | forums-e3b76bce373e0df73de7d2600cd596d436aedb32.tar forums-e3b76bce373e0df73de7d2600cd596d436aedb32.tar.gz forums-e3b76bce373e0df73de7d2600cd596d436aedb32.tar.bz2 forums-e3b76bce373e0df73de7d2600cd596d436aedb32.tar.xz forums-e3b76bce373e0df73de7d2600cd596d436aedb32.zip |
[ticket/16063] Remove board_dst config value since unused
PHPBB3-16063
Diffstat (limited to 'phpBB/phpbb/db/migration')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/timezone_p3.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/timezone_p3.php b/phpBB/phpbb/db/migration/data/v310/timezone_p3.php new file mode 100644 index 0000000000..6c751eae4e --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v310/timezone_p3.php @@ -0,0 +1,29 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +namespace phpbb\db\migration\data\v310; + +class timezone_p3 extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return array('\phpbb\db\migration\data\v310\timezone'); + } + + public function update_data() + { + return array( + array('config.remove', array('board_dst')), + ); + } +} |