diff options
author | Bruno Ais <brunoaiss@gmail.com> | 2012-02-15 22:03:32 +0000 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-03-19 08:27:32 -0400 |
commit | 18373035c3299e80b2c075cfc3d475c89af3cc73 (patch) | |
tree | 252b05ce76838ed3e28076bcd4a54dedfde6b692 /phpBB/install/schemas/mysql_40_schema.sql | |
parent | 6f5c0dddfcd2a1b56fe1e8cf783f48ecfc8561e9 (diff) | |
download | forums-18373035c3299e80b2c075cfc3d475c89af3cc73.tar forums-18373035c3299e80b2c075cfc3d475c89af3cc73.tar.gz forums-18373035c3299e80b2c075cfc3d475c89af3cc73.tar.bz2 forums-18373035c3299e80b2c075cfc3d475c89af3cc73.tar.xz forums-18373035c3299e80b2c075cfc3d475c89af3cc73.zip |
[feature/save-post-on-report] Changed the name of the column
The name of the column was changed from reported_post AND
reported_text to reported_post_text.
This change was made by request
PHPBB3-10600
Diffstat (limited to 'phpBB/install/schemas/mysql_40_schema.sql')
-rw-r--r-- | phpBB/install/schemas/mysql_40_schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/mysql_40_schema.sql b/phpBB/install/schemas/mysql_40_schema.sql index 22276b0d1f..69648c6b14 100644 --- a/phpBB/install/schemas/mysql_40_schema.sql +++ b/phpBB/install/schemas/mysql_40_schema.sql @@ -647,7 +647,7 @@ CREATE TABLE phpbb_reports ( report_closed tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, report_time int(11) UNSIGNED DEFAULT '0' NOT NULL, report_text mediumblob NOT NULL, - reported_post mediumblob NOT NULL, + reported_post_text mediumblob NOT NULL, PRIMARY KEY (report_id), KEY post_id (post_id), KEY pm_id (pm_id) |