mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-25 20:44:01 +01:00
26 lines
374 B
PHP
26 lines
374 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_v306rc2 extends phpbb_db_migration
|
|
{
|
|
function depends_on()
|
|
{
|
|
return array('phpbb_db_migration_v306rc1');
|
|
}
|
|
|
|
function update_schema()
|
|
{
|
|
return array();
|
|
}
|
|
|
|
function update_data()
|
|
{
|
|
}
|
|
}
|