diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-07-11 17:23:53 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-07-11 17:23:53 +0200 |
commit | 0d6fe203729cdade106e21383c3faa5f71b378ce (patch) | |
tree | f214fa7a86aeedf0dd8ecaab4b4e9a35ca5425ee /phpBB/phpbb | |
parent | dd78b564e56152be559b4ec476e35698fa32e1bf (diff) | |
parent | b5492a07da70be20ce64f9f9c080f58089b5ca9a (diff) | |
download | forums-0d6fe203729cdade106e21383c3faa5f71b378ce.tar forums-0d6fe203729cdade106e21383c3faa5f71b378ce.tar.gz forums-0d6fe203729cdade106e21383c3faa5f71b378ce.tar.bz2 forums-0d6fe203729cdade106e21383c3faa5f71b378ce.tar.xz forums-0d6fe203729cdade106e21383c3faa5f71b378ce.zip |
Merge branch 'prep-release-3.1.0-RC2' into develop-ascraeus
* prep-release-3.1.0-RC2:
[prep-release-3.1.0-RC2] Update phpBB Version for RC3 development
[prep-release-3.1.0-RC2] Add changelog for 3.1.0-RC2
[prep-release-3.1.0-RC2] Prepare Changelog
[prep-release-3.1.0-RC2] Add migration for 3.1.0-RC2
[prep-release-3.1.0-RC2] Update version to 3.1.0-RC2
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/rc2.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/rc2.php b/phpBB/phpbb/db/migration/data/v310/rc2.php new file mode 100644 index 0000000000..e1323659da --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v310/rc2.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\v310; + +class rc2 extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v310\rc1', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.1.0-RC2')), + ); + } +} |