diff options
author | Marc Alexander <admin@m-a-styles.de> | 2018-09-09 12:00:28 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2018-09-09 12:00:28 +0100 |
commit | 2c9d49bf09ad6f429ff83736b10fe467d65aa88f (patch) | |
tree | ba14ba066816fd04f64d7dce7277b855bffaa92f /phpBB/phpbb/db/migration | |
parent | bd90a5358969e2bb82df34727ed8f6575781e5d2 (diff) | |
parent | ab17c854cdf1a70b262faff434e32ebcd0483118 (diff) | |
download | forums-2c9d49bf09ad6f429ff83736b10fe467d65aa88f.tar forums-2c9d49bf09ad6f429ff83736b10fe467d65aa88f.tar.gz forums-2c9d49bf09ad6f429ff83736b10fe467d65aa88f.tar.bz2 forums-2c9d49bf09ad6f429ff83736b10fe467d65aa88f.tar.xz forums-2c9d49bf09ad6f429ff83736b10fe467d65aa88f.zip |
Merge branch 'prep-release-3.2.3' into 3.2.x
Diffstat (limited to 'phpBB/phpbb/db/migration')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v32x/v323.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v32x/v323.php b/phpBB/phpbb/db/migration/data/v32x/v323.php new file mode 100644 index 0000000000..1ec28ceb37 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v32x/v323.php @@ -0,0 +1,37 @@ +<?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 v323 extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + return phpbb_version_compare($this->config['version'], '3.2.3', '>='); + } + + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v32x\v323rc2', + ); + + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.2.3')), + ); + } +} |