aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/db/migration/data/v32x/user_notifications_table_index_p2.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_index_p2.php b/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_index_p2.php
index e492b4e1f8..0a471766a0 100644
--- a/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_index_p2.php
+++ b/phpBB/phpbb/db/migration/data/v32x/user_notifications_table_index_p2.php
@@ -27,7 +27,7 @@ class user_notifications_table_index_p2 extends \phpbb\db\migration\migration
return array(
'add_index' => array(
$this->table_prefix . 'user_notifications' => array(
- 'usr_id_itm_id' => array('user_id', 'item_id'),
+ 'uid_itm_id' => array('user_id', 'item_id'),
),
),
);
@@ -38,7 +38,7 @@ class user_notifications_table_index_p2 extends \phpbb\db\migration\migration
return array(
'drop_keys' => array(
$this->table_prefix . 'user_notifications' => array(
- 'usr_id_itm_id',
+ 'uid_itm_id',
),
),
);