diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-10-23 02:44:45 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-10-23 02:44:45 +0200 |
commit | 08f365236acb48f9017b6e978a9b9c50ab5ed960 (patch) | |
tree | f35e7ec45473df00f91b8b85e262704c30f1683d /phpBB/phpbb | |
parent | e4c8e4905c327b73252667f09500b3248c55e86c (diff) | |
parent | 7a90184421a5c70f657a7497abade036054ee5dd (diff) | |
download | forums-08f365236acb48f9017b6e978a9b9c50ab5ed960.tar forums-08f365236acb48f9017b6e978a9b9c50ab5ed960.tar.gz forums-08f365236acb48f9017b6e978a9b9c50ab5ed960.tar.bz2 forums-08f365236acb48f9017b6e978a9b9c50ab5ed960.tar.xz forums-08f365236acb48f9017b6e978a9b9c50ab5ed960.zip |
Merge branch 'prep-release-3.1.0-RC6' into develop-ascraeus
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/rc6.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/rc6.php b/phpBB/phpbb/db/migration/data/v310/rc6.php new file mode 100644 index 0000000000..b84f2edcc9 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v310/rc6.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 rc6 extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v310\rc5', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.1.0-RC6')), + ); + } +} |