diff options
author | Josh <josh.t.richards@gmail.com> | 2024-02-20 10:49:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-20 10:49:07 -0500 |
commit | bd6fecff4ec882b9ca50b5e48fdc7e7340c8d32a (patch) | |
tree | a435bac5af74992b478c473e5e7af9627b4950df /core | |
parent | 19bff05ccc70bce7dc571ed3cf36ca5cd963ca8c (diff) | |
download | nextcloud-server-bd6fecff4ec882b9ca50b5e48fdc7e7340c8d32a.tar.gz nextcloud-server-bd6fecff4ec882b9ca50b5e48fdc7e7340c8d32a.zip |
fix(db): Remove duplicate missing index check for `cards`
Signed-off-by: Josh <josh.t.richards@gmail.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/Application.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/core/Application.php b/core/Application.php index 700fb3297af..376049f8b69 100644 --- a/core/Application.php +++ b/core/Application.php @@ -165,13 +165,6 @@ class Application extends App { $event->addMissingIndex( 'cards', - 'cards_abiduri', - ['addressbookid', 'uri'], - [], - true - ); - $event->addMissingIndex( - 'cards', 'cards_abid', ['addressbookid'], [], |