mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-04 15:57:45 +02:00
[ticket/11103] Fixing some db columns that were of the incorrect type
PHPBB3-11103
This commit is contained in:
@@ -1297,7 +1297,7 @@ function get_schema_struct()
|
||||
|
||||
$schema_data['phpbb_notifications'] = array(
|
||||
'COLUMNS' => array(
|
||||
'item_type' => array('UINT', 0),
|
||||
'item_type' => array('VCHAR:25', ''),
|
||||
'item_id' => array('UINT', 0),
|
||||
'user_id' => array('UINT', 0),
|
||||
'unread' => array('BOOL', 1),
|
||||
@@ -1775,7 +1775,7 @@ function get_schema_struct()
|
||||
|
||||
$schema_data['phpbb_user_notifications'] = array(
|
||||
'COLUMNS' => array(
|
||||
'item_type' => array('UINT', 0),
|
||||
'item_type' => array('VCHAR:25', ''),
|
||||
'item_id' => array('UINT', 0),
|
||||
'user_id' => array('UINT', 0),
|
||||
'method' => array('VCHAR:25', ''),
|
||||
|
Reference in New Issue
Block a user