aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-08-17 21:48:12 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-08-17 21:48:12 +0200
commit0b843505e82182d821e51cda55195bb8c6eebb7e (patch)
tree2eb2984fe790ddf56c0bdd1ebaacf21e980d60fb /phpBB/phpbb/db
parentd4652c1b20a5537f7e155b51a575f8fc47368133 (diff)
parent9c15594fe498a8a1640bb89aa0c93800918a9798 (diff)
downloadforums-0b843505e82182d821e51cda55195bb8c6eebb7e.tar
forums-0b843505e82182d821e51cda55195bb8c6eebb7e.tar.gz
forums-0b843505e82182d821e51cda55195bb8c6eebb7e.tar.bz2
forums-0b843505e82182d821e51cda55195bb8c6eebb7e.tar.xz
forums-0b843505e82182d821e51cda55195bb8c6eebb7e.zip
Merge branch '3.2.x' into 3.3.x
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r--phpBB/phpbb/db/migration/data/v32x/v328rc1.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v32x/v328rc1.php b/phpBB/phpbb/db/migration/data/v32x/v328rc1.php
new file mode 100644
index 0000000000..fa43cf33a7
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v32x/v328rc1.php
@@ -0,0 +1,37 @@
+<?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\v32x;
+
+class v328rc1 extends \phpbb\db\migration\migration
+{
+ public function effectively_installed()
+ {
+ return phpbb_version_compare($this->config['version'], '3.2.8-RC1', '>=');
+ }
+
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v32x\timezone_p3',
+ '\phpbb\db\migration\data\v32x\v327',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.2.8-RC1')),
+ );
+ }
+}