mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/14992] 'method' is needed for the unique index
This commit is contained in:
parent
c2711fb6c4
commit
4c67f65d5d
1 changed files with 1 additions and 1 deletions
|
@ -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'),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue