diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-08-07 09:57:52 +0200 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2025-08-07 11:08:20 +0200 |
| commit | 4111313a281fdf3101dc4b44c02fef57989a2f55 (patch) | |
| tree | 929c03240a67a1d97667f8d428e10715e787677b /db | |
| parent | 7f9c229614a74b0cabec6725a00137fc5066c7ff (diff) | |
fix in sql in down path of migrations, re #5313, re #5770
Merge request studip/studip!4416
Diffstat (limited to 'db')
| -rw-r--r-- | db/migrations/5.3.29_add_index_blubber_comments_mkdate.php | 2 |
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`"); } } |
