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

@@ -293,6 +293,23 @@ CREATE INDEX [is_dynamic] ON [phpbb_config]([is_dynamic]) ON [PRIMARY]
GO
/*
Table: 'phpbb_config_text'
*/
CREATE TABLE [phpbb_config_text] (
[config_name] [varchar] (255) DEFAULT ('') NOT NULL ,
[config_value] [varchar] (8000) DEFAULT ('') NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [phpbb_config_text] WITH NOCHECK ADD
CONSTRAINT [PK_phpbb_config_text] PRIMARY KEY CLUSTERED
(
[config_name]
) ON [PRIMARY]
GO
/*
Table: 'phpbb_confirm'
*/