[ticket/541] Update for final release of Board3 Portal

B3P-541
This commit is contained in:
Marc Alexander
2015-05-07 15:48:14 +02:00
parent 44a1937237
commit 7b7fde2a00
2 changed files with 27 additions and 2 deletions

25
migrations/v210.php Normal file
View File

@@ -0,0 +1,25 @@
<?php
/**
*
* @package Board3 Portal v2.1
* @copyright (c) 2015 Board3 Group ( www.board3.de )
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
namespace board3\portal\migrations;
class v210 extends \phpbb\db\migration\migration
{
static public function depends_on()
{
return array('\board3\portal\migrations\v210_rc3');
}
public function update_data()
{
return array(
array('config.update', array('board3_portal_version', '2.1.0')),
);
}
}