mirror of
https://github.com/nextcloud/server.git
synced 2026-02-18 18:28:50 -05:00
fix(core): add fs_name_hash index to migration
Signed-off-by: Varun Patil <varunpatil@ucla.edu>
This commit is contained in:
parent
fbb4518a05
commit
84017a9ad7
1 changed files with 1 additions and 0 deletions
|
|
@ -261,6 +261,7 @@ class Version13000Date20170718121200 extends SimpleMigrationStep {
|
|||
$table->addIndex(['storage', 'size', 'fileid'], 'fs_storage_size');
|
||||
$table->addIndex(['fileid', 'storage', 'size'], 'fs_id_storage_size');
|
||||
$table->addIndex(['parent'], 'fs_parent');
|
||||
$table->addIndex(['name'], 'fs_name_hash');
|
||||
$table->addIndex(['mtime'], 'fs_mtime');
|
||||
$table->addIndex(['size'], 'fs_size');
|
||||
if (!$schema->getDatabasePlatform() instanceof PostgreSQL94Platform) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue