diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-03-05 22:58:19 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-03-05 22:59:58 +0100 |
commit | 3a4b34ca3240c5f66faae8faa1c50baea1d6e108 (patch) | |
tree | 6a5f97461abc65b92fbfa9dfd9a0d2117e4842ed /phpBB/includes/db | |
parent | 5158224845d4d21fc3d4bbb62ff3e0d798285071 (diff) | |
download | forums-3a4b34ca3240c5f66faae8faa1c50baea1d6e108.tar forums-3a4b34ca3240c5f66faae8faa1c50baea1d6e108.tar.gz forums-3a4b34ca3240c5f66faae8faa1c50baea1d6e108.tar.bz2 forums-3a4b34ca3240c5f66faae8faa1c50baea1d6e108.tar.xz forums-3a4b34ca3240c5f66faae8faa1c50baea1d6e108.zip |
[ticket/10202] Add migration file for config_db_text.
PHPBB3-10202
Diffstat (limited to 'phpBB/includes/db')
-rw-r--r-- | phpBB/includes/db/migration/data/310/config_db_text.php | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/phpBB/includes/db/migration/data/310/config_db_text.php b/phpBB/includes/db/migration/data/310/config_db_text.php new file mode 100644 index 0000000000..89f211adda --- /dev/null +++ b/phpBB/includes/db/migration/data/310/config_db_text.php @@ -0,0 +1,45 @@ +<?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', + ), + ); + } +} |