diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2007-10-14 12:12:32 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-10-14 12:12:32 +0000 |
| commit | ea46faa8ffd7eac3696a2a12d9ceddad5f625e8e (patch) | |
| tree | 60a4b7d38f328a0e04083bfc0853c496c8981902 /phpBB/install/database_update.php | |
| parent | 525b9bd79961041e3e095fa98eb1e8e57eaa2a7b (diff) | |
| download | forums-ea46faa8ffd7eac3696a2a12d9ceddad5f625e8e.tar forums-ea46faa8ffd7eac3696a2a12d9ceddad5f625e8e.tar.gz forums-ea46faa8ffd7eac3696a2a12d9ceddad5f625e8e.tar.bz2 forums-ea46faa8ffd7eac3696a2a12d9ceddad5f625e8e.tar.xz forums-ea46faa8ffd7eac3696a2a12d9ceddad5f625e8e.zip | |
forum rules, forum descriptions and group description bbcode uid fixes
git-svn-id: file:///svn/phpbb/trunk@8178 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/database_update.php')
| -rw-r--r-- | phpBB/install/database_update.php | 15 |
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 |
