Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2018-10-02 00:59:36 +0300
committerRoeland Jago Douma <roeland@famdouma.nl>2018-10-02 00:59:36 +0300
commitb82cbe04df59805e50d3762e6205c777aeff90a9 (patch)
tree8aefc7f58392767cd05b1bc1de82d0b4e745e885 /core/Migrations
parent28eaacd59fe67dda6ec7686dabecabff3bedae0f (diff)
Add uid_owner and uid_initiator share tabe indices
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'core/Migrations')
-rw-r--r--core/Migrations/Version13000Date20170718121200.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/Migrations/Version13000Date20170718121200.php b/core/Migrations/Version13000Date20170718121200.php
index 29687b8683f..0b2c255738c 100644
--- a/core/Migrations/Version13000Date20170718121200.php
+++ b/core/Migrations/Version13000Date20170718121200.php
@@ -403,6 +403,8 @@ class Version13000Date20170718121200 extends SimpleMigrationStep {
$table->addIndex(['token'], 'token_index');
$table->addIndex(['share_with'], 'share_with_index');
$table->addIndex(['parent'], 'parent_index');
+ $table->addIndex(['uid_owner'], 'owner_index');
+ $table->addIndex(['uid_initiator'], 'initiator_index');
}
if (!$schema->hasTable('jobs')) {