diff options
Diffstat (limited to 'phpBB/install/database_update.php')
| -rw-r--r-- | phpBB/install/database_update.php | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 201629e7b1..363a90e5d8 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -317,7 +317,7 @@ $database_update_info = array( 'seed' => array('UINT:10', 0), ), SESSIONS_TABLE => array( - 'session_forwarded_for' => array('VCHAR:255', 0), + 'session_forwarded_for' => array('VCHAR:255', ''), ), ), 'change_columns' => array( @@ -351,6 +351,17 @@ $database_update_info = array( ), ), ), + // Changes from 3.0.b5 to the next version + '3.0.b5' => array( + 'change_columns' => array( + TOPICS_TABLE => array( + 'poll_title' => array('STEXT_UNI', ''), + ), + SESSIONS_TABLE => array( + 'session_forwarded_for' => array('VCHAR:255', ''), + ), + ), + ), ); // Determine mapping database type |
