diff options
Diffstat (limited to 'phpBB/develop/create_schema_files.php')
-rw-r--r-- | phpBB/develop/create_schema_files.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php index bab008436f..5923b0a388 100644 --- a/phpBB/develop/create_schema_files.php +++ b/phpBB/develop/create_schema_files.php @@ -759,11 +759,11 @@ function get_schema_struct() 'bbcode_tag' => array('VCHAR:16', ''), 'bbcode_helpline' => array('VCHAR', ''), 'display_on_posting' => array('BOOL', 0), - 'bbcode_match' => array('VCHAR', ''), + 'bbcode_match' => array('TEXT', ''), 'bbcode_tpl' => array('MTEXT', ''), - 'first_pass_match' => array('VCHAR', ''), - 'first_pass_replace' => array('VCHAR', ''), - 'second_pass_match' => array('VCHAR', ''), + 'first_pass_match' => array('MTEXT', ''), + 'first_pass_replace' => array('MTEXT', ''), + 'second_pass_match' => array('MTEXT', ''), 'second_pass_replace' => array('MTEXT', ''), ), 'PRIMARY_KEY' => 'bbcode_id', |