aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/migration/data/v31x
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-07-16 18:24:47 +0200
committerMarc Alexander <admin@m-a-styles.de>2017-07-16 18:24:47 +0200
commitc56ebb53125676c7962c1547a649c982aef60664 (patch)
tree3b4f92da4dd270f662a0423e7ed11a0241f470b1 /phpBB/phpbb/db/migration/data/v31x
parentd490190a99a137ab2a4c33f9ced4945614319855 (diff)
parent149375253685b3a38996f63015a74b7a0f53aa14 (diff)
downloadforums-c56ebb53125676c7962c1547a649c982aef60664.tar
forums-c56ebb53125676c7962c1547a649c982aef60664.tar.gz
forums-c56ebb53125676c7962c1547a649c982aef60664.tar.bz2
forums-c56ebb53125676c7962c1547a649c982aef60664.tar.xz
forums-c56ebb53125676c7962c1547a649c982aef60664.zip
Merge branch 'prep-release-3.1.11' into prep-release-3.2.1
Diffstat (limited to 'phpBB/phpbb/db/migration/data/v31x')
-rw-r--r--phpBB/phpbb/db/migration/data/v31x/v3111.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v31x/v3111.php b/phpBB/phpbb/db/migration/data/v31x/v3111.php
new file mode 100644
index 0000000000..f01bbc2bff
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v31x/v3111.php
@@ -0,0 +1,36 @@
+<?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 v3111 extends \phpbb\db\migration\migration
+{
+ public function effectively_installed()
+ {
+ return phpbb_version_compare($this->config['version'], '3.1.11', '>=');
+ }
+
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v31x\v3111rc1',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.1.11')),
+ );
+ }
+}