mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-01 20:19:13 +02:00
Also removed the effectively_installed() check that is not needed according to EXreaction. PHPBB3-11610
39 lines
724 B
PHP
39 lines
724 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @package migration
|
|
* @copyright (c) 2013 phpBB Group
|
|
* @license http://opensource.org/licenses/gpl-license.php GNU Public License v2
|
|
*
|
|
*/
|
|
|
|
class phpbb_db_migration_data_310_passwords extends phpbb_db_migration
|
|
{
|
|
static public function depends_on()
|
|
{
|
|
return array('phpbb_db_migration_data_30x_3_0_11');
|
|
}
|
|
|
|
public function update_schema()
|
|
{
|
|
return array(
|
|
'change_columns' => array(
|
|
$this->table_prefix . 'users' => array(
|
|
'user_password' => array('VCHAR:255', ''),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
public function revert_schema()
|
|
{
|
|
return array(
|
|
'change_columns' => array(
|
|
$this->table_prefix . 'users' => array(
|
|
'user_password' => array('VCHAR:40', ''),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|