diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2018-11-10 21:24:14 +0100 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2018-11-10 21:24:14 +0100 |
| commit | f631d6b84dbc4b5d5530090d31acea5b6bd950a3 (patch) | |
| tree | 9749c263e9d8df95f674a3217f6676969f6359f9 /phpBB/phpbb/db/migration/data/v32x/v324.php | |
| parent | 36a8e480832ee77a5b808ef6dc27f8343cc65a85 (diff) | |
| download | forums-f631d6b84dbc4b5d5530090d31acea5b6bd950a3.tar forums-f631d6b84dbc4b5d5530090d31acea5b6bd950a3.tar.gz forums-f631d6b84dbc4b5d5530090d31acea5b6bd950a3.tar.bz2 forums-f631d6b84dbc4b5d5530090d31acea5b6bd950a3.tar.xz forums-f631d6b84dbc4b5d5530090d31acea5b6bd950a3.zip | |
[prep-release-3.2.4] Add migration for 3.2.4
Diffstat (limited to 'phpBB/phpbb/db/migration/data/v32x/v324.php')
| -rw-r--r-- | phpBB/phpbb/db/migration/data/v32x/v324.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v32x/v324.php b/phpBB/phpbb/db/migration/data/v32x/v324.php new file mode 100644 index 0000000000..cd7783fdee --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v32x/v324.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 v324 extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + return phpbb_version_compare($this->config['version'], '3.2.4', '>='); + } + + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v32x\v324rc1', + '\phpbb\db\migration\data\v32x\remove_imagick', + ); + + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.2.4')), + ); + } +} |
