aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/database_update.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r--phpBB/install/database_update.php15
1 files changed, 14 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index 9ffd8cae12..122073ba42 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -8,7 +8,7 @@
*
*/
-$updates_to_version = '3.0.RC6';
+$updates_to_version = '3.0.RC7';
// Return if we "just include it" to find out for which version the database update is responsuble for
if (defined('IN_PHPBB') && defined('IN_INSTALL'))
@@ -447,6 +447,19 @@ $database_update_info = array(
),
),
),
+ // Changes from 3.0.RC6 to the next version
+ '3.0.RC6' => array(
+ // Change the following columns
+ 'change_columns' => array(
+ FORUMS_TABLE => array(
+ 'forum_desc_uid' => array('VCHAR:8', ''),
+ 'forum_rules_uid' => array('VCHAR:8', ''),
+ ),
+ GROUPS_TABLE => array(
+ 'group_desc_uid' => array('VCHAR:8', ''),
+ ),
+ ),
+ ),
);
// Determine mapping database type