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:
authorLukas Reschke <lukas@statuscode.ch>2021-09-13 12:01:35 +0300
committerLukas Reschke <lukas@statuscode.ch>2021-09-13 12:01:35 +0300
commit474a5b55d39e621c12947b50ea6c8febfceed7d7 (patch)
treef01f0a9291626531899b0ae07b125d5b20a87264 /core/Migrations
parent358eaba7dd45e5c5dbce44011bd7eadd88fe8534 (diff)
Implement review feedback
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'core/Migrations')
-rw-r--r--core/Migrations/Version23000Date20210906132259.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Migrations/Version23000Date20210906132259.php b/core/Migrations/Version23000Date20210906132259.php
index e65846f40b9..26d18edc8f1 100644
--- a/core/Migrations/Version23000Date20210906132259.php
+++ b/core/Migrations/Version23000Date20210906132259.php
@@ -34,8 +34,8 @@ class Version23000Date20210906132259 extends SimpleMigrationStep {
$table->addColumn('delete_after', Types::DATETIME, [
'notnull' => true,
]);
- $table->addIndex(['hash'], 'ratelimit_hash_idx');
- $table->addIndex(['delete_after'], 'ratelimit_delete_after_idx');
+ $table->addIndex(['hash'], 'ratelimit_hash');
+ $table->addIndex(['delete_after'], 'ratelimit_delete_after');
return $schema;
}