mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/14992] Make unit tests run more verbose
PHPBB3-14992
This commit is contained in:
@@ -27,7 +27,7 @@ class user_notifications_table_temp_index extends \phpbb\db\migration\migration
|
||||
return array(
|
||||
'add_index' => array(
|
||||
$this->table_prefix . 'user_notifications' => array(
|
||||
'itm_usr_mthd' => array('item_type', 'item_id', 'user_id', 'method'),
|
||||
'itm_usr_mthd' => array('item_type', 'item_id', 'user_id'),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
@@ -32,7 +32,7 @@ class user_notifications_table_unique_index extends \phpbb\db\migration\migratio
|
||||
),
|
||||
'add_unique_index' => array(
|
||||
$this->table_prefix . 'user_notifications' => array(
|
||||
'itm_usr_mthd' => array('item_type', 'item_id', 'user_id', 'method'),
|
||||
'itm_usr_mthd' => array('item_type', 'item_id', 'user_id'),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
Reference in New Issue
Block a user