Bugfix/fix voice call active text

This commit is contained in:
Luca Haid
2024-04-16 17:38:26 +00:00
parent 7f371b1dc7
commit f74f56023f

View File

@@ -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();
}
}
}