diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2015-04-10 09:53:58 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2015-04-10 09:53:58 +0200 |
| commit | fcc7e7d33306347128158ff843db08bd25039cb4 (patch) | |
| tree | e1aabf1762cee2673645e1252c4fd48d6dcce6ae /phpBB/phpbb | |
| parent | 17620bba46138ec48a6748a4147986b1d21a48fd (diff) | |
| parent | 073f3e4470016af718f90070276305615abc007f (diff) | |
| download | forums-fcc7e7d33306347128158ff843db08bd25039cb4.tar forums-fcc7e7d33306347128158ff843db08bd25039cb4.tar.gz forums-fcc7e7d33306347128158ff843db08bd25039cb4.tar.bz2 forums-fcc7e7d33306347128158ff843db08bd25039cb4.tar.xz forums-fcc7e7d33306347128158ff843db08bd25039cb4.zip | |
Merge branch 'prep-release-3.1.4' into 3.1.x
Diffstat (limited to 'phpBB/phpbb')
| -rw-r--r-- | phpBB/phpbb/db/migration/data/v31x/v314rc1.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v31x/v314rc1.php b/phpBB/phpbb/db/migration/data/v31x/v314rc1.php new file mode 100644 index 0000000000..10cdbe3f9c --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v31x/v314rc1.php @@ -0,0 +1,31 @@ +<?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 v314rc1 extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v31x\v313', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.1.4-RC1')), + ); + } +} |
