diff options
author | Nils Adermann <naderman@naderman.de> | 2014-10-25 17:05:13 -0700 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2014-10-25 17:05:13 -0700 |
commit | 76cdc2d891d873abf6f8537f84339970811742ea (patch) | |
tree | 79bbd6360e023a0d7c818bec444eff3843d543e4 /phpBB/phpbb/db | |
parent | 33d0872a18e38a694352fcd604649bc65c7da16d (diff) | |
parent | 8de93bee951115d41a9e8aee95dbf2406ea8c2fe (diff) | |
download | forums-76cdc2d891d873abf6f8537f84339970811742ea.tar forums-76cdc2d891d873abf6f8537f84339970811742ea.tar.gz forums-76cdc2d891d873abf6f8537f84339970811742ea.tar.bz2 forums-76cdc2d891d873abf6f8537f84339970811742ea.tar.xz forums-76cdc2d891d873abf6f8537f84339970811742ea.zip |
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus:
[prep-release-3.1.0] Add 3.1.0 gold release migration
Diffstat (limited to 'phpBB/phpbb/db')
-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')), + ); + } +} |