diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-07-11 21:26:12 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2017-07-11 21:26:12 +0200 |
commit | 8e310231bda3a1319c9f5cc54d3bca60d1ccca7e (patch) | |
tree | bf51f08cd1a3959c33d02bd8f9e8f004fe241a00 /phpBB/phpbb | |
parent | 05c47a0f4abcc068e2dbba095cf2b9482022fa82 (diff) | |
parent | b99d47ce7e39a947bbc625df2cef67be22d9c827 (diff) | |
download | forums-8e310231bda3a1319c9f5cc54d3bca60d1ccca7e.tar forums-8e310231bda3a1319c9f5cc54d3bca60d1ccca7e.tar.gz forums-8e310231bda3a1319c9f5cc54d3bca60d1ccca7e.tar.bz2 forums-8e310231bda3a1319c9f5cc54d3bca60d1ccca7e.tar.xz forums-8e310231bda3a1319c9f5cc54d3bca60d1ccca7e.zip |
Merge branch 'prep-release-3.2.1' into 3.2.x
Diffstat (limited to 'phpBB/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')), + ); + } +} |