1
0
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:
Nathan Guse
2012-09-08 16:02:32 -05:00
parent a4eb8bf47a
commit 1e53f7df9d
6 changed files with 22 additions and 12 deletions

View File

@@ -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', ''),