diff options
author | Tristan Darricau <github@nicofuma.fr> | 2016-04-28 21:58:16 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2016-04-28 21:58:16 +0200 |
commit | 829a8ac15a9d348ee3a9802ee3f86948c6356371 (patch) | |
tree | d1b199e2347a18f3387a802a18ddac58bbf30e63 /phpBB/phpbb | |
parent | ead261e6dba4d470160c6a31f95430b4053c0d54 (diff) | |
parent | 480a1be94cbff24b639486459d6cd3974f8ba911 (diff) | |
download | forums-829a8ac15a9d348ee3a9802ee3f86948c6356371.tar forums-829a8ac15a9d348ee3a9802ee3f86948c6356371.tar.gz forums-829a8ac15a9d348ee3a9802ee3f86948c6356371.tar.bz2 forums-829a8ac15a9d348ee3a9802ee3f86948c6356371.tar.xz forums-829a8ac15a9d348ee3a9802ee3f86948c6356371.zip |
Merge branch 'prep-release-3.2.0-b2' into 3.2.x
* prep-release-3.2.0-b2:
[prep-release-3.2.0-b2] Add schema.json
[prep-release-3.2.0-b2] Add changelog for 3.2.0-b2
[prep-release-3.2.0-b2] Add migration for 3.2.0-b2
[prep-release-3.2.0-b2] Update version to 3.2.0-b2
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v320/v320b2.php | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v320/v320b2.php b/phpBB/phpbb/db/migration/data/v320/v320b2.php new file mode 100644 index 0000000000..007f7588e6 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v320/v320b2.php @@ -0,0 +1,40 @@ +<?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\v320; + +use phpbb\db\migration\migration; + +class v320b2 extends migration +{ + public function effectively_installed() + { + return version_compare($this->config['version'], '3.2.0-b2', '>='); + } + + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v31x\v318', + '\phpbb\db\migration\data\v320\v320b1', + '\phpbb\db\migration\data\v320\remote_upload_validation', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.2.0-b2')), + ); + } +} |