diff options
| author | Nils Adermann <naderman@naderman.de> | 2010-03-02 01:05:37 +0100 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2010-03-02 01:05:37 +0100 |
| commit | 8a3c323933cbdadd302ed49b5769f90c3f622cdc (patch) | |
| tree | 8a728061dc1636a1f3ac2a8cc549e2a8395e8e08 /phpBB/install/database_update.php | |
| parent | 54f94e0d428c5963ecca86a40247105e51288432 (diff) | |
| parent | 438f31326a16cbdbc93c46042fa8a7e4e1be0f63 (diff) | |
| download | forums-8a3c323933cbdadd302ed49b5769f90c3f622cdc.tar forums-8a3c323933cbdadd302ed49b5769f90c3f622cdc.tar.gz forums-8a3c323933cbdadd302ed49b5769f90c3f622cdc.tar.bz2 forums-8a3c323933cbdadd302ed49b5769f90c3f622cdc.tar.xz forums-8a3c323933cbdadd302ed49b5769f90c3f622cdc.zip | |
Merge commit 'release-3.0-RC7'
Diffstat (limited to 'phpBB/install/database_update.php')
| -rw-r--r-- | phpBB/install/database_update.php | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 9ffd8cae12..4d878b15c0 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,22 @@ $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', ''), + ), + USERS_TABLE => array( + 'user_newpasswd' => array('VCHAR_UNI:40', ''), + ), + ), + ), ); // Determine mapping database type |
