1
0
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:
Marc Alexander
2017-05-21 16:14:11 +02:00
parent bcc85ab679
commit f3c782b358
3 changed files with 3 additions and 3 deletions

View File

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

View File

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