diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-04-27 14:41:50 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-04-27 14:41:50 +0200 |
commit | bec047586a09ec0bf4a8214edb66c452e2489851 (patch) | |
tree | e12404f40192692cc0f4db60324582d865b0c798 /phpBB | |
parent | 37e5457dcfd9c9b3a07c1ec8e248f6b648235386 (diff) | |
download | forums-bec047586a09ec0bf4a8214edb66c452e2489851.tar forums-bec047586a09ec0bf4a8214edb66c452e2489851.tar.gz forums-bec047586a09ec0bf4a8214edb66c452e2489851.tar.bz2 forums-bec047586a09ec0bf4a8214edb66c452e2489851.tar.xz forums-bec047586a09ec0bf4a8214edb66c452e2489851.zip |
[prep-release-3.2.6] Add migration to 3.2.6
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v32x/v326.php | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v32x/v326.php b/phpBB/phpbb/db/migration/data/v32x/v326.php new file mode 100644 index 0000000000..2d511b9ed8 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v32x/v326.php @@ -0,0 +1,39 @@ +<?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\v32x; + +class v326 extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + return phpbb_version_compare($this->config['version'], '3.2.6', '>='); + } + + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v32x\v326rc1', + '\phpbb\db\migration\data\v32x\disable_remote_avatar', + '\phpbb\db\migration\data\v32x\smtp_dynamic_data', + ); + + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.2.6')), + ); + } +} |