瀏覽代碼

Revert "add a prefix index to filecache.path"

tags/v22.0.0beta1
Roeland Jago Douma 3 年之前
父節點
當前提交
14ee17e5c5
沒有連結到貢獻者的電子郵件帳戶。
共有 3 個檔案被更改,包括 0 行新增12 行删除
  1. 0
    4
      core/Application.php
  2. 0
    7
      core/Command/Db/AddMissingIndices.php
  3. 0
    1
      core/Migrations/Version13000Date20170718121200.php

+ 0
- 4
core/Application.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')) {

+ 0
- 7
core/Command/Db/AddMissingIndices.php 查看文件

@@ -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>');

+ 0
- 1
core/Migrations/Version13000Date20170718121200.php 查看文件

@@ -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…
取消
儲存