diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-07-09 23:00:47 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-07-11 16:04:27 +0200 |
commit | 4449793b07fd5082c0849de47368c117efc74ca6 (patch) | |
tree | 94290917ac11e8b004cdcfa9ae8ea3a5d4dd24fd /phpBB | |
parent | c0e0011b106c443055011b976843c79f8dcff36e (diff) | |
download | forums-4449793b07fd5082c0849de47368c117efc74ca6.tar forums-4449793b07fd5082c0849de47368c117efc74ca6.tar.gz forums-4449793b07fd5082c0849de47368c117efc74ca6.tar.bz2 forums-4449793b07fd5082c0849de47368c117efc74ca6.tar.xz forums-4449793b07fd5082c0849de47368c117efc74ca6.zip |
[prep-release-3.1.0-RC2] Add migration for 3.1.0-RC2
Diffstat (limited to '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')), + ); + } +} |