aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/sqlite_schema.sql
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-03-06 15:36:15 -0600
committerNathan Guse <nathaniel.guse@gmail.com>2013-03-06 15:36:15 -0600
commit9ca15267fa91d2c9aad5df4f57a41de8b2c79be0 (patch)
tree6a61a976cfc2ac7a4be32c7deacb789f7efc7752 /phpBB/install/schemas/sqlite_schema.sql
parent02758cabbc8860b5026353a2f995077f5d7c2e76 (diff)
parent32ff2348f10aed1aad3b78e7677dca34335b7adb (diff)
downloadforums-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/sqlite_schema.sql')
-rw-r--r--phpBB/install/schemas/sqlite_schema.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/install/schemas/sqlite_schema.sql b/phpBB/install/schemas/sqlite_schema.sql
index 7dd1fe70f6..ccb67ad46f 100644
--- a/phpBB/install/schemas/sqlite_schema.sql
+++ b/phpBB/install/schemas/sqlite_schema.sql
@@ -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 mediumtext(16777215) NOT NULL DEFAULT '',
+ PRIMARY KEY (config_name)
+);
+
+
# Table: 'phpbb_confirm'
CREATE TABLE phpbb_confirm (
confirm_id char(32) NOT NULL DEFAULT '',