diff options
author | Andreas Fischer <bantu@phpbb.com> | 2013-03-05 02:22:09 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2013-03-05 22:59:57 +0100 |
commit | 3a5d3bdd686e93539d51d8f1a78a5489192f73ef (patch) | |
tree | 693fad8062c683798d4e3e6806b8ea07c0244cab /phpBB/install/schemas/mysql_40_schema.sql | |
parent | 50b557ca4e0a80b3f153bc43f261e6b59e197371 (diff) | |
download | forums-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/install/schemas/mysql_40_schema.sql')
-rw-r--r-- | phpBB/install/schemas/mysql_40_schema.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/install/schemas/mysql_40_schema.sql b/phpBB/install/schemas/mysql_40_schema.sql index 3bf8c22488..b432cd4aa2 100644 --- a/phpBB/install/schemas/mysql_40_schema.sql +++ b/phpBB/install/schemas/mysql_40_schema.sql @@ -157,6 +157,14 @@ CREATE TABLE phpbb_config ( ); +# Table: 'phpbb_config_text' +CREATE TABLE phpbb_config_text ( + config_name varbinary(255) DEFAULT '' NOT NULL, + config_value blob NOT NULL, + PRIMARY KEY (config_name) +); + + # Table: 'phpbb_confirm' CREATE TABLE phpbb_confirm ( confirm_id binary(32) DEFAULT '' NOT NULL, |