Revert "[stable21] add a prefix index to filecache.path"

pull/26451/head
Roeland Jago Douma 5 years ago committed by GitHub
parent 2e13dc2aa1
commit c12f5482b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      core/Application.php
  2. 7
      core/Command/Db/AddMissingIndices.php
  3. 1
      core/Migrations/Version13000Date20170718121200.php

@ -112,10 +112,6 @@ class Application extends App {
if (!$table->hasIndex('fs_size')) {
$subject->addHintForMissingSubject($table->getName(), 'fs_size');
}
if (!$table->hasIndex('fs_path_prefix')) {
$subject->addHintForMissingSubject($table->getName(), 'fs_path_prefix');
}
}
if ($schema->hasTable('twofactor_providers')) {

@ -144,13 +144,6 @@ class AddMissingIndices extends Command {
$updated = true;
$output->writeln('<info>Filecache table updated successfully.</info>');
}
if (!$table->hasIndex('fs_path_prefix')) {
$output->writeln('<info>Adding additional path index to the filecache table, this can take some time...</info>');
$table->addIndex(['size'], 'fs_path_prefix', [], ["lengths" => [128]]);
$this->connection->migrateToSchema($schema->getWrappedSchema());
$updated = true;
$output->writeln('<info>Filecache table updated successfully.</info>');
}
}
$output->writeln('<info>Check indices of the twofactor_providers table.</info>');

@ -262,7 +262,6 @@ class Version13000Date20170718121200 extends SimpleMigrationStep {
$table->addIndex(['storage', 'size', 'fileid'], 'fs_storage_size');
$table->addIndex(['mtime'], 'fs_mtime');
$table->addIndex(['size'], 'fs_size');
$table->addIndex(['path'], 'fs_path_prefix', [], ["lengths" => [128]]);
}
if (!$schema->hasTable('group_user')) {

Loading…
Cancel
Save