Skip to content

Commit

Permalink
Merge pull request #50195 from nextcloud/fix/49638/update-prefs-indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
provokateurin authored Jan 15, 2025
2 parents a16abfb + 5f81fda commit 47eedf9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions core/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,13 @@ public function __construct() {

$event->addMissingIndex(
'preferences',
'preferences_app_key',
['appid', 'configkey']
'prefs_uid_lazy_i',
['userid', 'lazy']
);
$event->addMissingIndex(
'preferences',
'prefs_app_key_ind_fl_i',
['appid', 'configkey', 'indexed', 'flags']
);

$event->addMissingIndex(
Expand Down

0 comments on commit 47eedf9

Please sign in to comment.