aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2018-12-16 16:05:24 +0100
committerMarc Alexander <admin@m-a-styles.de>2018-12-19 20:16:31 +0100
commitb089116965c361b02106fb839877f33639982a42 (patch)
treefb33beb299949af10e844db0d4f251aa16dcfcab /phpBB
parent0cb00c9f990d7d2863dce279ccbd1dd3ce050426 (diff)
downloadforums-b089116965c361b02106fb839877f33639982a42.tar
forums-b089116965c361b02106fb839877f33639982a42.tar.gz
forums-b089116965c361b02106fb839877f33639982a42.tar.bz2
forums-b089116965c361b02106fb839877f33639982a42.tar.xz
forums-b089116965c361b02106fb839877f33639982a42.zip
[prep-release-3.2.5] Add 3.2.5 migration
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/phpbb/db/migration/data/v32x/v325.php38
1 files changed, 38 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v32x/v325.php b/phpBB/phpbb/db/migration/data/v32x/v325.php
new file mode 100644
index 0000000000..59de4916df
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v32x/v325.php
@@ -0,0 +1,38 @@
+<?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 v325 extends \phpbb\db\migration\migration
+{
+ public function effectively_installed()
+ {
+ return phpbb_version_compare($this->config['version'], '3.2.5', '>=');
+ }
+
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v32x\v325rc1',
+ '\phpbb\db\migration\data\v32x\jquery_update',
+ );
+
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.2.5')),
+ );
+ }
+}