From 83ed73c9b4f0fc1313d239792426f80bc1690887 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Fri, 17 Apr 2009 13:16:20 +0000 Subject: [PATCH] fix forum_style column. :/ Bug #38905 git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9455 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/database_update.php | 10 ++++++++-- 1 file 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), + ), + ), + ), ); }