diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2009-07-24 11:13:32 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-07-24 11:13:32 +0000 |
commit | 4739c7ba3957dfe585973dafe7465cb9fd8c6d1f (patch) | |
tree | c54ede45cda36fd124bcc69ad95ab2d56a70ceaf /phpBB/install | |
parent | c84d5074c1aef4a1705d4b17472689e8e4a15351 (diff) | |
download | forums-4739c7ba3957dfe585973dafe7465cb9fd8c6d1f.tar forums-4739c7ba3957dfe585973dafe7465cb9fd8c6d1f.tar.gz forums-4739c7ba3957dfe585973dafe7465cb9fd8c6d1f.tar.bz2 forums-4739c7ba3957dfe585973dafe7465cb9fd8c6d1f.tar.xz forums-4739c7ba3957dfe585973dafe7465cb9fd8c6d1f.zip |
[Feature] Added new functionality to inactive users module:
- Ability to set users per page.
- Ability to sort by posts/number of reminders/last reminded date.
- Show number of posts and ability to search posts.
- Show number of reminders sent to user.
- Show date of last reminder sent to user.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9845 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/database_update.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index c055449d5f..6d596a8a00 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -11,7 +11,7 @@ $updates_to_version = '3.0.6-dev'; // Enter any version to update from to test updates. The version within the db will not be updated. -$debug_from_version = false; +$debug_from_version = '3.0.5'; // Which oldest version does this updater supports? $oldest_from_version = '3.0.0'; @@ -696,7 +696,9 @@ function database_update_info() 'attempts' => array('UINT', 0), ), USERS_TABLE => array( - 'user_new' => array('BOOL', 1), + 'user_new' => array('BOOL', 1), + 'user_reminded' => array('TINT:4', 0), + 'user_reminded_time'=> array('TIMESTAMP', 0), ), GROUPS_TABLE => array( 'group_skip_auth' => array('BOOL', 0, 'after' => 'group_founder_manage'), @@ -714,7 +716,7 @@ function database_update_info() ), REPORTS_TABLE => array( 'post_id' => array('post_id'), - 'pm_id' => array('pm_id'), + 'pm_id' => array('pm_id'), ), ), ), |