aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/mysql_schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/install/schemas/mysql_schema.sql')
-rw-r--r--phpBB/install/schemas/mysql_schema.sql8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql
index bfcebdc3b1..c9e7009bd0 100644
--- a/phpBB/install/schemas/mysql_schema.sql
+++ b/phpBB/install/schemas/mysql_schema.sql
@@ -112,11 +112,11 @@ CREATE TABLE phpbb_bbcodes (
bbcode_tag varchar(16) DEFAULT '' NOT NULL,
bbcode_helpline varchar(255) DEFAULT '' NOT NULL,
display_on_posting tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
- bbcode_match varchar(255) DEFAULT '' NOT NULL,
+ bbcode_match text DEFAULT '' NOT NULL,
bbcode_tpl mediumtext DEFAULT '' NOT NULL,
- first_pass_match varchar(255) DEFAULT '' NOT NULL,
- first_pass_replace varchar(255) DEFAULT '' NOT NULL,
- second_pass_match varchar(255) DEFAULT '' NOT NULL,
+ first_pass_match mediumtext DEFAULT '' NOT NULL,
+ first_pass_replace mediumtext DEFAULT '' NOT NULL,
+ second_pass_match mediumtext DEFAULT '' NOT NULL,
second_pass_replace mediumtext DEFAULT '' NOT NULL,
PRIMARY KEY (bbcode_id),
KEY display_on_post (display_on_posting)