1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-02 04:24:56 +02:00
Nathan Guse 6c44dadecb [feature/migrations] Move migrator to service container
Version numbers

3.1 updates

Restore database_update.php file to what it was in develop

Get first forum to place global announcements in

PHPBB3-9737
2013-01-09 16:44:05 -06:00

29 lines
462 B
PHP

<?php
/**
*
* @package migration
* @copyright (c) 2012 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License v2
*
*/
class phpbb_db_migration_data_3_0_10 extends phpbb_db_migration
{
function depends_on()
{
return array('phpbb_db_migration_data_3_0_10_rc3');
}
function update_schema()
{
return array();
}
function update_data()
{
return array(
array('config.update', array('version', '3.0.10')),
);
}
}