diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-06-25 21:59:14 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-06-25 21:59:14 +0200 |
commit | 03cd4658d08caa062509fdf0e6ee7d6d296b67c0 (patch) | |
tree | f4c5c76c5b87d13a198b446673cd599dee582540 /phpBB | |
parent | d423b2ec0d94dba7ca303f7e91ba44dfbd60fe0f (diff) | |
download | forums-03cd4658d08caa062509fdf0e6ee7d6d296b67c0.tar forums-03cd4658d08caa062509fdf0e6ee7d6d296b67c0.tar.gz forums-03cd4658d08caa062509fdf0e6ee7d6d296b67c0.tar.bz2 forums-03cd4658d08caa062509fdf0e6ee7d6d296b67c0.tar.xz forums-03cd4658d08caa062509fdf0e6ee7d6d296b67c0.zip |
[prep-release-3.2.1] Add migration for 3.2.1-RC1
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v32x/v321rc1.php | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v32x/v321rc1.php b/phpBB/phpbb/db/migration/data/v32x/v321rc1.php new file mode 100644 index 0000000000..653a16f327 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v32x/v321rc1.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 v321rc1 extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + return phpbb_version_compare($this->config['version'], '3.2.1-RC1', '>='); + } + + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v320\v320', + '\phpbb\db\migration\data\v31x\v3111rc1', + '\phpbb\db\migration\data\v32x\load_user_activity_limit', + '\phpbb\db\migration\data\v32x\user_notifications_table_unique_index', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.2.1-RC1')), + ); + } +} |