diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2015-01-31 01:06:23 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2015-01-31 01:06:23 +0100 |
commit | 9232367b3545731060bb6db238fbe94129c735be (patch) | |
tree | f3d895936d239405eecbe7221cab66500942bbd4 /phpBB/phpbb/db/migration/data/v31x/v313rc2.php | |
parent | dd182c5433129c7116fb01afc1a80425e3c92d22 (diff) | |
download | forums-9232367b3545731060bb6db238fbe94129c735be.tar forums-9232367b3545731060bb6db238fbe94129c735be.tar.gz forums-9232367b3545731060bb6db238fbe94129c735be.tar.bz2 forums-9232367b3545731060bb6db238fbe94129c735be.tar.xz forums-9232367b3545731060bb6db238fbe94129c735be.zip |
[prep-release-3.1.3] Add migration for 3.1.3-RC2
Diffstat (limited to 'phpBB/phpbb/db/migration/data/v31x/v313rc2.php')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v31x/v313rc2.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v31x/v313rc2.php b/phpBB/phpbb/db/migration/data/v31x/v313rc2.php new file mode 100644 index 0000000000..d832d6f502 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v31x/v313rc2.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\v31x; + +class v313rc2 extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v30x\release_3_0_13_pl1', + '\phpbb\db\migration\data\v31x\v313rc1', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.1.3-RC2')), + ); + } +} |