From f74f56023f71252f37ec167b08a1b23ea7f8e13c Mon Sep 17 00:00:00 2001 From: Luca Haid Date: Tue, 16 Apr 2024 17:38:26 +0000 Subject: [PATCH] Bugfix/fix voice call active text --- .../20240416190300_add_voice_call_history_start_index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/migrations/20240416190300_add_voice_call_history_start_index.php b/db/migrations/20240416190300_add_voice_call_history_start_index.php index 94b68e050..ad11b0d15 100644 --- a/db/migrations/20240416190300_add_voice_call_history_start_index.php +++ b/db/migrations/20240416190300_add_voice_call_history_start_index.php @@ -7,13 +7,13 @@ final class AddVoiceCallHistoryStartIndex extends AbstractMigration { public function up(): void { if ($this->getEnvironment() == "thetool") { //VoiceCallHistory Table add start index - $this->table("VoiceCallHistory")->addIndex(["start"]); + $this->table("VoiceCallHistory")->addIndex(["start"])->save(); } } public function down(): void { if ($this->getEnvironment() == "thetool") { - $this->table("VoiceCallHistory")->removeIndex(["start"]); + $this->table("VoiceCallHistory")->removeIndex(["start"])->save(); } } }