Преглед на файлове

Merge pull request #45129 from nextcloud/pulsejet/name-idx-mig

fix(core): add fs_name_hash index to migration
Ferdinand Thiessen преди 2 седмици
родител
ревизия
4466c71de2
променени са 1 файла, в които са добавени 1 реда и са изтрити 0 реда
  1. 1 0
      core/Migrations/Version13000Date20170718121200.php

+ 1 - 0
core/Migrations/Version13000Date20170718121200.php

@@ -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) {