Update 20240410150500_add_voice_call_history.php
This commit is contained in:
@@ -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]);
|
||||
|
||||
Reference in New Issue
Block a user