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:
authorMario Danic <mario@lovelyhq.com>2020-04-30 01:13:13 +0300
committerMario Danic <mario@lovelyhq.com>2020-05-01 00:04:15 +0300
commit6e28c2807b751a9dbd2a60abb3038eed3cf04b42 (patch)
treed3e558553bb509aefad4210280ce91f015f28c41 /core/Migrations
parent8d5404b750df85a947c43aacc266c6088d8b4aed (diff)
Add index to properties table
Signed-off-by: Mario Danic <mario@lovelyhq.com>
Diffstat (limited to 'core/Migrations')
-rw-r--r--core/Migrations/Version13000Date20170718121200.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/Migrations/Version13000Date20170718121200.php b/core/Migrations/Version13000Date20170718121200.php
index f9745566168..7e48059f798 100644
--- a/core/Migrations/Version13000Date20170718121200.php
+++ b/core/Migrations/Version13000Date20170718121200.php
@@ -318,6 +318,7 @@ class Version13000Date20170718121200 extends SimpleMigrationStep {
]);
$table->setPrimaryKey(['id']);
$table->addIndex(['userid'], 'property_index');
+ $table->addIndex(['userid', 'propertypath'], 'properties_path_index');
}
if (!$schema->hasTable('share')) {