comment the version mapping more appropiatly.

git-svn-id: file:///svn/phpbb/trunk@6795 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2006-12-23 18:17:05 +00:00
parent c0f64d360f
commit 3182317ef1

View file

@ -285,7 +285,7 @@ $unsigned_types = array('UINT', 'UINT:', 'USINT', 'BOOL', 'TIMESTAMP');
// Only an example, but also commented out // Only an example, but also commented out
$database_update_info = array( $database_update_info = array(
// Changes within this version // Changes from 3.0.b3 to the next version
'3.0.b3' => array( '3.0.b3' => array(
// Change the following columns... // Change the following columns...
'change_columns' => array( 'change_columns' => array(
@ -309,7 +309,7 @@ $database_update_info = array(
), ),
), ),
), ),
// Latest version // Changes from 3.0.b4 to the next version
'3.0.b4' => array( '3.0.b4' => array(
// Add the following columns // Add the following columns
'add_columns' => array( 'add_columns' => array(
@ -320,9 +320,6 @@ $database_update_info = array(
'session_forwarded_for' => array('VCHAR:255', 0), 'session_forwarded_for' => array('VCHAR:255', 0),
), ),
), ),
),
// Latest version
'3.0.b5' => array(
// Remove the following keys // Remove the following keys
'drop_keys' => array( 'drop_keys' => array(
ZEBRA_TABLE => array( ZEBRA_TABLE => array(
@ -1357,6 +1354,7 @@ function add_bots()
'user_style' => 1, 'user_style' => 1,
'user_timezone' => 0, 'user_timezone' => 0,
'user_dateformat' => $config['default_dateformat'], 'user_dateformat' => $config['default_dateformat'],
'user_allow_massemail' => 0,
); );
$user_id = user_add($user_row); $user_id = user_add($user_row);