From 6149b068374f2ae7ed0110b5430fbef09d592c56 Mon Sep 17 00:00:00 2001 From: Luca Haid Date: Wed, 10 Apr 2024 13:32:15 +0000 Subject: [PATCH] Update 20240410150500_add_voice_call_history.php --- db/migrations/20240410150500_add_voice_call_history.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/migrations/20240410150500_add_voice_call_history.php b/db/migrations/20240410150500_add_voice_call_history.php index 891227dc3..a7cd27fd5 100644 --- a/db/migrations/20240410150500_add_voice_call_history.php +++ b/db/migrations/20240410150500_add_voice_call_history.php @@ -10,7 +10,7 @@ final class AddVoiceCallHistory extends AbstractMigration { //VoiceCallHistory Table $voiceCallHistoryTable = $this->table("VoiceCallHistory", ["signed" => true]); $voiceCallHistoryTable->addColumn("uid", "string", ["null" => false, "limit" => 255]); - $voiceCallHistoryTable->addColumn("voice_account", "string", ["null" => false, "limit" => 255]); + $voiceCallHistoryTable->addColumn("voice_account", "string", ["null" => true, "limit" => 255]); $voiceCallHistoryTable->addColumn("start", "datetime", ["null" => false]); $voiceCallHistoryTable->addColumn("source", "string", ["null" => true, "limit" => 255]); $voiceCallHistoryTable->addColumn("destination", "string", ["null" => true, "limit" => 255]);