aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/install/database_update.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index e164e5442c..4fda30463f 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -655,7 +655,7 @@ function database_update_info()
'template_id' => array('UINT', 0),
),
FORUMS_TABLE => array(
- 'forum_style' => array('USINT', 0),
+ 'forum_style' => array('UINT', 0),
),
USERS_TABLE => array(
'user_style' => array('UINT', 0),
@@ -667,7 +667,13 @@ function database_update_info()
'3.0.4-RC1' => array(),
// Changes from 3.0.4 to 3.0.5-dev
- '3.0.4' => array(),
+ '3.0.4' => array(
+ 'change_columns' => array(
+ FORUMS_TABLE => array(
+ 'forum_style' => array('UINT', 0),
+ ),
+ ),
+ ),
);
}