aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-05-11 23:22:27 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-05-11 23:36:20 +0200
commitb6cd02bacb08a77a1d9f82285ff1501d5c7e597c (patch)
treeaa1df0d6607be62a08acc063ab12118ff95e2608
parent52ed8bfaa176df778e2da819ee8fa76906b75d00 (diff)
downloadforums-b6cd02bacb08a77a1d9f82285ff1501d5c7e597c.tar
forums-b6cd02bacb08a77a1d9f82285ff1501d5c7e597c.tar.gz
forums-b6cd02bacb08a77a1d9f82285ff1501d5c7e597c.tar.bz2
forums-b6cd02bacb08a77a1d9f82285ff1501d5c7e597c.tar.xz
forums-b6cd02bacb08a77a1d9f82285ff1501d5c7e597c.zip
[ticket/16052] Add 3.3.0-dev migration
PHPBB3-16052
-rw-r--r--phpBB/phpbb/db/migration/data/v330/dev.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v330/dev.php b/phpBB/phpbb/db/migration/data/v330/dev.php
new file mode 100644
index 0000000000..209f9fc7ec
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v330/dev.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\v330;
+
+class dev extends \phpbb\db\migration\migration
+{
+ public function effectively_installed()
+ {
+ return version_compare($this->config['version'], '3.3.0-dev', '>=');
+ }
+
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v32x\v327',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.3.0-dev')),
+ );
+ }
+}