diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-03-06 15:36:15 -0600 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-03-06 15:36:15 -0600 |
commit | 9ca15267fa91d2c9aad5df4f57a41de8b2c79be0 (patch) | |
tree | 6a61a976cfc2ac7a4be32c7deacb789f7efc7752 /phpBB/install/schemas/mysql_40_schema.sql | |
parent | 02758cabbc8860b5026353a2f995077f5d7c2e76 (diff) | |
parent | 32ff2348f10aed1aad3b78e7677dca34335b7adb (diff) | |
download | forums-9ca15267fa91d2c9aad5df4f57a41de8b2c79be0.tar forums-9ca15267fa91d2c9aad5df4f57a41de8b2c79be0.tar.gz forums-9ca15267fa91d2c9aad5df4f57a41de8b2c79be0.tar.bz2 forums-9ca15267fa91d2c9aad5df4f57a41de8b2c79be0.tar.xz forums-9ca15267fa91d2c9aad5df4f57a41de8b2c79be0.zip |
Merge remote-tracking branch 'remotes/bantu/ticket/10202' into develop
# By Andreas Fischer
# Via Andreas Fischer
* remotes/bantu/ticket/10202:
[ticket/10202] Rename method names _all() to _array().
[ticket/10202] Add migration file for config_db_text.
[ticket/10202] Upgrade TEXT to the bigger MTEXT.
[ticket/10202] Improve method documentation.
[ticket/10202] SQL escape the table name.
[ticket/10202] Add $this->db->sql_freeresult($result) to SELECT queries.
[ticket/10202] Define phpbb_config_db_text as a service.
[ticket/10202] Add tests for phpbb_config_db_text.
[ticket/10202] Adjust method names to guidelines.
[ticket/10202] Add database schema for phpbb_config_db_text.
[ticket/10202] Implementation of config options with arbitrary length values.
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..8c405677a8 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 mediumblob NOT NULL, + PRIMARY KEY (config_name) +); + + # Table: 'phpbb_confirm' CREATE TABLE phpbb_confirm ( confirm_id binary(32) DEFAULT '' NOT NULL, |