diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-09-20 09:53:23 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-09-20 09:53:23 +0200 |
commit | e00545588145e7d4d33cb9780673f36a6049f0eb (patch) | |
tree | f714f24b7e681c4a2f61eff8aab3a721b36bde79 /phpBB/phpbb | |
parent | fc252f1ba52760a072d8e79f5afc3268db7d1035 (diff) | |
parent | 26c6ffa458a70fa30d8bf925418ddf05cf86d1de (diff) | |
download | forums-e00545588145e7d4d33cb9780673f36a6049f0eb.tar forums-e00545588145e7d4d33cb9780673f36a6049f0eb.tar.gz forums-e00545588145e7d4d33cb9780673f36a6049f0eb.tar.bz2 forums-e00545588145e7d4d33cb9780673f36a6049f0eb.tar.xz forums-e00545588145e7d4d33cb9780673f36a6049f0eb.zip |
Merge branch 'prep-release-3.1.0-RC4' into develop-ascraeus
* prep-release-3.1.0-RC4:
[prep-release-3.1.0-RC4] Update phpBB Version for RC4 development
[prep-release-3.1.0-RC4] Add changelog for 3.1.0-RC4
[prep-release-3.1.0-RC4] Prepare Changelog
[prep-release-3.1.0-RC4] Add migration for 3.1.0-RC4
[prep-release-3.1.0-RC4] Update version to 3.1.0-RC4
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/rc4.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/rc4.php b/phpBB/phpbb/db/migration/data/v310/rc4.php new file mode 100644 index 0000000000..47de8291c1 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v310/rc4.php @@ -0,0 +1,32 @@ +<?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 rc4 extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v310\rc3', + '\phpbb\db\migration\data\v310\notifications_use_full_name', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.1.0-RC4')), + ); + } +} |