aboutsummaryrefslogtreecommitdiffstats
path: root/core/Migrations
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2021-09-13 11:01:35 +0200
committerLukas Reschke <lukas@statuscode.ch>2021-09-13 11:01:35 +0200
commit474a5b55d39e621c12947b50ea6c8febfceed7d7 (patch)
treef01f0a9291626531899b0ae07b125d5b20a87264 /core/Migrations
parent358eaba7dd45e5c5dbce44011bd7eadd88fe8534 (diff)
downloadnextcloud-server-474a5b55d39e621c12947b50ea6c8febfceed7d7.tar.gz
nextcloud-server-474a5b55d39e621c12947b50ea6c8febfceed7d7.zip
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;
}