aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/install/database_update.php10
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'),