diff options
author | Marcel Klehr <mklehr@gmx.net> | 2024-05-06 13:04:11 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2024-05-14 11:38:40 +0200 |
commit | ef61c50f4bcd5ea5911370c682aff19618a4d355 (patch) | |
tree | 267dfe30093521f1ab83850845720c1f6c834fb3 /core/Migrations | |
parent | 2c878099f1d2fbfc5b5d117c63fa8723d3e26f3d (diff) | |
download | nextcloud-server-ef61c50f4bcd5ea5911370c682aff19618a4d355.tar.gz nextcloud-server-ef61c50f4bcd5ea5911370c682aff19618a4d355.zip |
fix: address review comments
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
Diffstat (limited to 'core/Migrations')
-rw-r--r-- | core/Migrations/Version30000Date20240429122720.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/Migrations/Version30000Date20240429122720.php b/core/Migrations/Version30000Date20240429122720.php index 4bfbd86a6c7..bbd59d95813 100644 --- a/core/Migrations/Version30000Date20240429122720.php +++ b/core/Migrations/Version30000Date20240429122720.php @@ -102,10 +102,10 @@ class Version30000Date20240429122720 extends SimpleMigrationStep { 'length' => 255, ]); - $table->setPrimaryKey(['id'], 'tasks_id_index'); - $table->addIndex(['status', 'type'], 'tasks_status_type'); - $table->addIndex(['last_updated'], 'tasks_updated'); - $table->addIndex(['user_id', 'app_id', 'identifier'], 'tasks_uid_appid_ident'); + $table->setPrimaryKey(['id'], 'taskp_tasks_id_index'); + $table->addIndex(['status', 'type'], 'taskp_tasks_status_type'); + $table->addIndex(['last_updated'], 'taskp_tasks_updated'); + $table->addIndex(['user_id', 'app_id', 'identifier'], 'taskp_tasks_uid_appid_ident'); return $schema; } |