1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +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

@@ -331,6 +331,17 @@ CREATE TABLE phpbb_config (
CREATE INDEX phpbb_config_is_dynamic ON phpbb_config (is_dynamic)
/
/*
Table: 'phpbb_config_text'
*/
CREATE TABLE phpbb_config_text (
config_name varchar2(255) DEFAULT '' ,
config_value clob DEFAULT '' ,
CONSTRAINT pk_phpbb_config_text PRIMARY KEY (config_name)
)
/
/*
Table: 'phpbb_confirm'
*/