1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +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

@@ -154,6 +154,14 @@ 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 varchar(255) NOT NULL DEFAULT '',
config_value text(65535) NOT NULL DEFAULT '',
PRIMARY KEY (config_name)
);
# Table: 'phpbb_confirm'
CREATE TABLE phpbb_confirm (
confirm_id char(32) NOT NULL DEFAULT '',