aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2013-03-05 02:22:09 +0100
committerAndreas Fischer <bantu@phpbb.com>2013-03-05 22:59:57 +0100
commit3a5d3bdd686e93539d51d8f1a78a5489192f73ef (patch)
tree693fad8062c683798d4e3e6806b8ea07c0244cab /phpBB/develop
parent50b557ca4e0a80b3f153bc43f261e6b59e197371 (diff)
downloadforums-3a5d3bdd686e93539d51d8f1a78a5489192f73ef.tar
forums-3a5d3bdd686e93539d51d8f1a78a5489192f73ef.tar.gz
forums-3a5d3bdd686e93539d51d8f1a78a5489192f73ef.tar.bz2
forums-3a5d3bdd686e93539d51d8f1a78a5489192f73ef.tar.xz
forums-3a5d3bdd686e93539d51d8f1a78a5489192f73ef.zip
[ticket/10202] Add database schema for phpbb_config_db_text.
PHPBB3-10202
Diffstat (limited to 'phpBB/develop')
-rw-r--r--phpBB/develop/create_schema_files.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php
index a9caee2e25..907d177678 100644
--- a/phpBB/develop/create_schema_files.php
+++ b/phpBB/develop/create_schema_files.php
@@ -998,6 +998,14 @@ function get_schema_struct()
),
);
+ $schema_data['phpbb_config_text'] = array(
+ 'COLUMNS' => array(
+ 'config_name' => array('VCHAR', ''),
+ 'config_value' => array('TEXT', ''),
+ ),
+ 'PRIMARY_KEY' => 'config_name',
+ );
+
$schema_data['phpbb_confirm'] = array(
'COLUMNS' => array(
'confirm_id' => array('CHAR:32', ''),