diff options
author | Bruno Ais <brunoaiss@gmail.com> | 2012-03-08 09:16:36 +0000 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-03-19 08:27:32 -0400 |
commit | 165a2d1aa879f1fc65448721da5f6d143aff91fe (patch) | |
tree | d0a0d65985307ea951fe084b1f80aeecf57443eb /phpBB | |
parent | 18373035c3299e80b2c075cfc3d475c89af3cc73 (diff) | |
download | forums-165a2d1aa879f1fc65448721da5f6d143aff91fe.tar forums-165a2d1aa879f1fc65448721da5f6d143aff91fe.tar.gz forums-165a2d1aa879f1fc65448721da5f6d143aff91fe.tar.bz2 forums-165a2d1aa879f1fc65448721da5f6d143aff91fe.tar.xz forums-165a2d1aa879f1fc65448721da5f6d143aff91fe.zip |
[feature/save-post-on-report] Change the column type of reported text
What ever it said. I changed the type of data in the column
reported_post_text to match what was requested by p
PHPBB3-10600
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/install/database_update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 2fdbd16e4a..8a7ec1004e 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -1089,7 +1089,7 @@ function database_update_info() 'field_show_on_pm' => array('BOOL', 0), ), REPORTS_TABLE => array( - 'reported_post_text' => array('TEXT', ''), + 'reported_post_text' => array('MTEXT_UNI', ''), ), ), 'change_columns' => array( |