aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2014-10-25 17:05:07 -0700
committerNils Adermann <naderman@naderman.de>2014-10-25 17:05:07 -0700
commit8de93bee951115d41a9e8aee95dbf2406ea8c2fe (patch)
tree214dab74b0e84c0a17c294b203783544ea69ed0f /phpBB/phpbb
parent26d4483d36ec82f6dc8f4943f289be94302ab7ce (diff)
parentf2e9c62a9751c86e69fd2d718a01943619c05837 (diff)
downloadforums-8de93bee951115d41a9e8aee95dbf2406ea8c2fe.tar
forums-8de93bee951115d41a9e8aee95dbf2406ea8c2fe.tar.gz
forums-8de93bee951115d41a9e8aee95dbf2406ea8c2fe.tar.bz2
forums-8de93bee951115d41a9e8aee95dbf2406ea8c2fe.tar.xz
forums-8de93bee951115d41a9e8aee95dbf2406ea8c2fe.zip
Merge branch 'prep-release-3.1.0' into develop-ascraeus
* prep-release-3.1.0: [prep-release-3.1.0] Add 3.1.0 gold release migration
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/db/migration/data/v310/gold.php31
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')),
+ );
+ }
+}