1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-20 07:21:30 +02:00

[ticket/10202] Add database schema for phpbb_config_db_text.

PHPBB3-10202
This commit is contained in:
Andreas Fischer
2013-03-05 02:22:09 +01:00
parent 50b557ca4e
commit 3a5d3bdd68
8 changed files with 79 additions and 0 deletions

View File

@@ -222,6 +222,15 @@ ALTER TABLE phpbb_config ADD PRIMARY KEY (config_name);;
CREATE INDEX phpbb_config_is_dynamic ON phpbb_config(is_dynamic);;
# Table: 'phpbb_config_text'
CREATE TABLE phpbb_config_text (
config_name VARCHAR(255) CHARACTER SET NONE DEFAULT '' NOT NULL,
config_value BLOB SUB_TYPE TEXT CHARACTER SET NONE DEFAULT '' NOT NULL
);;
ALTER TABLE phpbb_config_text ADD PRIMARY KEY (config_name);;
# Table: 'phpbb_confirm'
CREATE TABLE phpbb_confirm (
confirm_id CHAR(32) CHARACTER SET NONE DEFAULT '' NOT NULL,