diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2009-07-28 21:33:31 +0000 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2009-07-28 21:33:31 +0000 |
| commit | b4f3a0eb2d20cd618a1ade5f2d38a90cb9c6d265 (patch) | |
| tree | e4d863506b2fea3ae16bb71df5f474d713eae47e | |
| parent | 8880e86f7b93c8b03e4f788c6abc17b429b390e7 (diff) | |
| download | forums-b4f3a0eb2d20cd618a1ade5f2d38a90cb9c6d265.tar forums-b4f3a0eb2d20cd618a1ade5f2d38a90cb9c6d265.tar.gz forums-b4f3a0eb2d20cd618a1ade5f2d38a90cb9c6d265.tar.bz2 forums-b4f3a0eb2d20cd618a1ade5f2d38a90cb9c6d265.tar.xz forums-b4f3a0eb2d20cd618a1ade5f2d38a90cb9c6d265.zip | |
Fix r9696, #45115. Move column change to the correct version.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9886 89ea8834-ac86-4346-8a33-228a782c2dd0
| -rw-r--r-- | phpBB/install/database_update.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index c2b5b3d3d1..a00d928a12 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -679,11 +679,6 @@ function database_update_info() 'forum_style' => array('UINT', 0), ), ), - 'change_columns' => array( - USERS_TABLE => array( - 'user_options' => array('UINT:11', 230271), - ), - ), ), // No changes from 3.0.5-RC1 to 3.0.5 @@ -710,6 +705,11 @@ function database_update_info() 'pm_id' => array('UINT', 0), ), ), + 'change_columns' => array( + USERS_TABLE => array( + 'user_options' => array('UINT:11', 230271), + ), + ), 'add_index' => array( LOG_TABLE => array( 'log_time' => array('log_time'), |
