1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-22 00:21:02 +01:00

[ticket/14992] 'method' is needed for the unique index

This commit is contained in:
David Colón 2017-05-24 16:56:24 -04:00
parent c2711fb6c4
commit 4c67f65d5d

View File

@ -27,7 +27,7 @@ class user_notifications_table_unique_index extends \phpbb\db\migration\migratio
return array(
'add_unique_index' => array(
$this->table_prefix . 'user_notifications' => array(
'itm_usr_mthd' => array('item_type', 'item_id', 'user_id'),
'itm_usr_mthd' => array('item_type', 'item_id', 'user_id', 'method'),
),
),
);