mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-08 17:56:52 +02:00
fix unread/new pm columns
git-svn-id: file:///svn/phpbb/trunk@8267 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
$updates_to_version = '3.0.RC8';
|
||||
$updates_to_version = '3.0.RC9-dev';
|
||||
|
||||
// Return if we "just include it" to find out for which version the database update is responsuble for
|
||||
if (defined('IN_PHPBB') && defined('IN_INSTALL'))
|
||||
@@ -463,6 +463,16 @@ $database_update_info = array(
|
||||
),
|
||||
),
|
||||
),
|
||||
// Changes from 3.0.RC8 to the next version
|
||||
'3.0.RC8' => array(
|
||||
// Change the following columns
|
||||
'change_columns' => array(
|
||||
USERS_TABLE => array(
|
||||
'user_new_privmsg' => array('INT:4', 0),
|
||||
'user_unread_privmsg' => array('INT:4', 0),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
// Determine mapping database type
|
||||
|
Reference in New Issue
Block a user