mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 21:38:54 +00:00
45 lines
901 B
PHP
45 lines
901 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_config_db_text extends phpbb_db_migration
|
|
{
|
|
public function effectively_installed()
|
|
{
|
|
return $this->db_tools->sql_table_exists($this->table_prefix . 'config_text');
|
|
}
|
|
|
|
static public function depends_on()
|
|
{
|
|
return array('phpbb_db_migration_data_30x_3_0_11');
|
|
}
|
|
|
|
public function update_schema()
|
|
{
|
|
return array(
|
|
'add_tables' => array(
|
|
$this->table_prefix . 'config_text' => array(
|
|
'COLUMNS' => array(
|
|
'config_name' => array('VCHAR', ''),
|
|
'config_value' => array('MTEXT', ''),
|
|
),
|
|
'PRIMARY_KEY' => 'config_name',
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
public function revert_schema()
|
|
{
|
|
return array(
|
|
'drop_tables' => array(
|
|
$this->table_prefix . 'config_text',
|
|
),
|
|
);
|
|
}
|
|
}
|