diff options
Diffstat (limited to 'phpBB/develop/mysql_upgrader.php')
| -rw-r--r-- | phpBB/develop/mysql_upgrader.php | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/develop/mysql_upgrader.php b/phpBB/develop/mysql_upgrader.php index 7f82ebfeab..3d3891c7b9 100644 --- a/phpBB/develop/mysql_upgrader.php +++ b/phpBB/develop/mysql_upgrader.php @@ -768,7 +768,7 @@ function get_schema_struct()  			'icon_id'				=> array('UINT', 0),  			'poster_ip'				=> array('VCHAR:40', ''),  			'post_time'				=> array('TIMESTAMP', 0), -			'post_approved'			=> array('BOOL', 1), +			'post_visibility'		=> array('TINT:3', 0),  			'post_reported'			=> array('BOOL', 0),  			'enable_bbcode'			=> array('BOOL', 1),  			'enable_smilies'		=> array('BOOL', 1), @@ -794,7 +794,7 @@ function get_schema_struct()  			'topic_id'				=> array('INDEX', 'topic_id'),  			'poster_ip'				=> array('INDEX', 'poster_ip'),  			'poster_id'				=> array('INDEX', 'poster_id'), -			'post_approved'			=> array('INDEX', 'post_approved'), +			'post_visibility'		=> array('INDEX', 'post_visibility'),  			'post_username'			=> array('INDEX', 'post_username'),  			'tid_post_time'			=> array('INDEX', array('topic_id', 'post_time')),  		), @@ -1107,7 +1107,7 @@ function get_schema_struct()  			'forum_id'					=> array('UINT', 0),  			'icon_id'					=> array('UINT', 0),  			'topic_attachment'			=> array('BOOL', 0), -			'topic_approved'			=> array('BOOL', 1), +			'topic_visibility'			=> array('TINT:3', 0),  			'topic_reported'			=> array('BOOL', 0),  			'topic_title'				=> array('STEXT_UNI', '', 'true_sort'),  			'topic_poster'				=> array('UINT', 0), @@ -1143,8 +1143,8 @@ function get_schema_struct()  			'forum_id'			=> array('INDEX', 'forum_id'),  			'forum_id_type'		=> array('INDEX', array('forum_id', 'topic_type')),  			'last_post_time'	=> array('INDEX', 'topic_last_post_time'), -			'topic_approved'	=> array('INDEX', 'topic_approved'), -			'forum_appr_last'	=> array('INDEX', array('forum_id', 'topic_approved', 'topic_last_post_id')), +			'topic_visibility'	=> array('INDEX', 'topic_visibility'), +			'forum_appr_last'	=> array('INDEX', array('forum_id', 'topic_visibility', 'topic_last_post_id')),  			'fid_time_moved'	=> array('INDEX', array('forum_id', 'topic_last_post_time', 'topic_moved_id')),  		),  	);  | 
