diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2016-04-16 12:50:31 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2016-04-16 12:50:31 +0200 |
commit | 29bb1ab72d68ff9a19cb3e1d99d4a4a9060e55a1 (patch) | |
tree | 39c2d27a7b188e55c5c1ccc1379c7b7a36304ab9 /phpBB/phpbb/db | |
parent | 1b0b78dabc99a21e36921055b35069cd39de6e1d (diff) | |
parent | 4cdec74e94728605089587f2fd0667b3b3e4e558 (diff) | |
download | forums-29bb1ab72d68ff9a19cb3e1d99d4a4a9060e55a1.tar forums-29bb1ab72d68ff9a19cb3e1d99d4a4a9060e55a1.tar.gz forums-29bb1ab72d68ff9a19cb3e1d99d4a4a9060e55a1.tar.bz2 forums-29bb1ab72d68ff9a19cb3e1d99d4a4a9060e55a1.tar.xz forums-29bb1ab72d68ff9a19cb3e1d99d4a4a9060e55a1.zip |
Merge branch '3.1.x' into 3.2.x
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v31x/v319.php | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v31x/v319.php b/phpBB/phpbb/db/migration/data/v31x/v319.php new file mode 100644 index 0000000000..f773814028 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v31x/v319.php @@ -0,0 +1,36 @@ +<?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\v31x; + +class v319 extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + return phpbb_version_compare($this->config['version'], '3.1.9', '>='); + } + + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v31x\v319rc1', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.1.9')), + ); + } +} |