mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-07 01:06:48 +02:00
- cleaned up the TRUNCATE/DELETE FROM in the native search backend - fixed an imporoper default value on some upgrades git-svn-id: file:///svn/phpbb/trunk@7036 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user