diff options
author | Nils Adermann <naderman@naderman.de> | 2014-10-25 17:03:50 -0700 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2014-10-25 17:03:50 -0700 |
commit | f2e9c62a9751c86e69fd2d718a01943619c05837 (patch) | |
tree | 214dab74b0e84c0a17c294b203783544ea69ed0f | |
parent | 4859cec0c50cc522e73dba5555def308835b1357 (diff) | |
download | forums-f2e9c62a9751c86e69fd2d718a01943619c05837.tar forums-f2e9c62a9751c86e69fd2d718a01943619c05837.tar.gz forums-f2e9c62a9751c86e69fd2d718a01943619c05837.tar.bz2 forums-f2e9c62a9751c86e69fd2d718a01943619c05837.tar.xz forums-f2e9c62a9751c86e69fd2d718a01943619c05837.zip |
[prep-release-3.1.0] Add 3.1.0 gold release migration
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/gold.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/gold.php b/phpBB/phpbb/db/migration/data/v310/gold.php new file mode 100644 index 0000000000..dcce9103fb --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v310/gold.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 gold extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v310\rc6', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.1.0')), + ); + } +} |