mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-25 11:01:48 +02:00
26 lines
371 B
PHP
26 lines
371 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_v305 extends phpbb_db_migration
|
|
{
|
|
function depends_on()
|
|
{
|
|
return array('phpbb_db_migration_v305rc1');
|
|
}
|
|
|
|
function update_schema()
|
|
{
|
|
return array();
|
|
}
|
|
|
|
function update_data()
|
|
{
|
|
}
|
|
}
|