aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Hendrik Willms <tleilax+studip@gmail.com>2025-08-07 09:57:52 +0200
committerJan-Hendrik Willms <tleilax+studip@gmail.com>2025-08-07 11:08:29 +0200
commit7ea05ec1376727ef9cdba3c8f5565f0e51d19d69 (patch)
treef859f91879072f18202460ceb37f845fed8fa5f7
parente6cd1a94b991a5f42358cb3874d72271871131f4 (diff)
fix in sql in down path of migrations, re #5313, re #5770
Merge request studip/studip!4416
-rw-r--r--db/migrations/5.3.29_add_index_blubber_comments_mkdate.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrations/5.3.29_add_index_blubber_comments_mkdate.php b/db/migrations/5.3.29_add_index_blubber_comments_mkdate.php
index 1d7ed7a..70c6655 100644
--- a/db/migrations/5.3.29_add_index_blubber_comments_mkdate.php
+++ b/db/migrations/5.3.29_add_index_blubber_comments_mkdate.php
@@ -15,6 +15,6 @@ class AddIndexBlubberCommentsMkdate extends Migration
public function down()
{
- DBManager::get()->exec("ALTER TABLE `blubber_comments` DROP INDEX (`mkdate`)");
+ DBManager::get()->exec("ALTER TABLE `blubber_comments` DROP INDEX `mkdate`");
}
}