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]);