diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-03-27 22:45:02 -0400 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-03-27 22:45:02 -0400 |
commit | 4239d8aa4e53cda036f67e39d8eb61ccd317a6c9 (patch) | |
tree | cff929c639ffaec9ef725c6af35f1d5d351d3023 /phpBB/install/schemas/sqlite_schema.sql | |
parent | 17a7fb7743ba3eb1bcb3d27d3958d503101c5bbb (diff) | |
parent | 3a044b4b3ef6b5a7c27ea357bc3b7d7dd101a262 (diff) | |
download | forums-4239d8aa4e53cda036f67e39d8eb61ccd317a6c9.tar forums-4239d8aa4e53cda036f67e39d8eb61ccd317a6c9.tar.gz forums-4239d8aa4e53cda036f67e39d8eb61ccd317a6c9.tar.bz2 forums-4239d8aa4e53cda036f67e39d8eb61ccd317a6c9.tar.xz forums-4239d8aa4e53cda036f67e39d8eb61ccd317a6c9.zip |
Merge remote-tracking branch 'brunoais/feature/save-post-on-report' into develop
* brunoais/feature/save-post-on-report:
[feature/save-post-on-report] Changed mark in subsilver2 to look like viewtopic
[feature/save-post-on-report] bbcode_nl2br missing.
[feature/save-post-on-report] Change the column type of reported text
[feature/save-post-on-report] Changed the name of the column
[feature/save-post-on-report] Bug fix table name
[feature/save-post-on-report] Saves the post reported when a report is creat
[feature/save-post-on-report] The complete changes for this feature
Diffstat (limited to 'phpBB/install/schemas/sqlite_schema.sql')
-rw-r--r-- | phpBB/install/schemas/sqlite_schema.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/install/schemas/sqlite_schema.sql b/phpBB/install/schemas/sqlite_schema.sql index 257937275c..56468bcdd9 100644 --- a/phpBB/install/schemas/sqlite_schema.sql +++ b/phpBB/install/schemas/sqlite_schema.sql @@ -627,7 +627,8 @@ CREATE TABLE phpbb_reports ( user_notify INTEGER UNSIGNED NOT NULL DEFAULT '0', report_closed INTEGER UNSIGNED NOT NULL DEFAULT '0', report_time INTEGER UNSIGNED NOT NULL DEFAULT '0', - report_text mediumtext(16777215) NOT NULL DEFAULT '' + report_text mediumtext(16777215) NOT NULL DEFAULT '', + reported_post_text mediumtext(16777215) NOT NULL DEFAULT '' ); CREATE INDEX phpbb_reports_post_id ON phpbb_reports (post_id); |