aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-04-21 00:16:06 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-04-21 00:16:06 +0200
commit446c0459c92055a215baba6009f8515068cb019d (patch)
tree98f74156bcea74f0cad5728d2a3c96c92ecb2348 /phpBB/phpbb/db
parentff72df5218ea905e44f16e73895b2b5e763282b8 (diff)
parent2b0645b7b9030ce5101f3a3aa4c10ed446527dc8 (diff)
downloadforums-446c0459c92055a215baba6009f8515068cb019d.tar
forums-446c0459c92055a215baba6009f8515068cb019d.tar.gz
forums-446c0459c92055a215baba6009f8515068cb019d.tar.bz2
forums-446c0459c92055a215baba6009f8515068cb019d.tar.xz
forums-446c0459c92055a215baba6009f8515068cb019d.zip
Merge branch 'prep-release-3.2.6' into 3.2.x
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r--phpBB/phpbb/db/migration/data/v32x/v326rc1.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v32x/v326rc1.php b/phpBB/phpbb/db/migration/data/v32x/v326rc1.php
new file mode 100644
index 0000000000..092700d3db
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v32x/v326rc1.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 v326rc1 extends \phpbb\db\migration\migration
+{
+ public function effectively_installed()
+ {
+ return phpbb_version_compare($this->config['version'], '3.2.6-RC1', '>=');
+ }
+
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v32x\v325',
+ );
+
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.2.6-RC1')),
+ );
+ }
+}