aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/migration/data/v32x/v329.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2020-01-04 14:21:58 +0100
committerMarc Alexander <admin@m-a-styles.de>2020-01-04 21:51:44 +0100
commit1b8193ab8b2c73d4a38520c206816817db168447 (patch)
tree7f0842d90b52cb926d15cc1df1dde77a2972d586 /phpBB/phpbb/db/migration/data/v32x/v329.php
parentb83de54bb4fd3217b41f61de896e73732752d196 (diff)
parented9cbc89c19bc6321bfdd540f241683b71ea9a6e (diff)
downloadforums-1b8193ab8b2c73d4a38520c206816817db168447.tar
forums-1b8193ab8b2c73d4a38520c206816817db168447.tar.gz
forums-1b8193ab8b2c73d4a38520c206816817db168447.tar.bz2
forums-1b8193ab8b2c73d4a38520c206816817db168447.tar.xz
forums-1b8193ab8b2c73d4a38520c206816817db168447.zip
Merge branch '3.2.x' into 3.3.x
Diffstat (limited to 'phpBB/phpbb/db/migration/data/v32x/v329.php')
-rw-r--r--phpBB/phpbb/db/migration/data/v32x/v329.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v32x/v329.php b/phpBB/phpbb/db/migration/data/v32x/v329.php
new file mode 100644
index 0000000000..e88e264aef
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v32x/v329.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 v329 extends \phpbb\db\migration\migration
+{
+ public function effectively_installed()
+ {
+ return phpbb_version_compare($this->config['version'], '3.2.9', '>=');
+ }
+
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v32x\v329rc1',
+ '\phpbb\db\migration\data\v32x\user_emoji_permission',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.2.9')),
+ );
+ }
+}