Skip to content

Commit

Permalink
[prep-release-3.2.5] Add 3.2.5-RC1 migration
Browse files Browse the repository at this point in the history
  • Loading branch information
marc1706 committed Nov 29, 2018
1 parent fab57f0 commit 8a1d148
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions phpBB/phpbb/db/migration/data/v32x/v325rc1.php
Original file line number Diff line number Diff line change
@@ -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\v32x;

class v325rc1 extends \phpbb\db\migration\migration
{
public function effectively_installed()
{
return phpbb_version_compare($this->config['version'], '3.2.5-RC1', '>=');
}

static public function depends_on()
{
return array(
'\phpbb\db\migration\data\v32x\v324',
);
}

public function update_data()
{
return array(
array('config.update', array('version', '3.2.5-RC1')),
);
}
}

0 comments on commit 8a1d148

Please sign in to comment.