From 0af4c948a8920145f27598cea4a85b29da5c94b0 Mon Sep 17 00:00:00 2001 From: Rene Krenn Date: Tue, 1 Jul 2025 17:08:18 +0200 Subject: [PATCH] MT#62987 add transcript info cols - voicemails Change-Id: I19b6fcf3114d61269c4d9edddcac864824f49877 --- lib/NGCP/Schema/Result/voicemail_spool.pm | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/lib/NGCP/Schema/Result/voicemail_spool.pm b/lib/NGCP/Schema/Result/voicemail_spool.pm index 6fd1d4b7..ba9f798e 100644 --- a/lib/NGCP/Schema/Result/voicemail_spool.pm +++ b/lib/NGCP/Schema/Result/voicemail_spool.pm @@ -52,6 +52,19 @@ __PACKAGE__->add_columns( { data_type => "longblob", is_nullable => 1 }, "call_id", { data_type => "varchar", is_nullable => 1, size => 255 }, + "transcript_status", + { + data_type => "enum", + default_value => "none", + extra => { list => ["none", "pending", "done"] }, + is_nullable => 0, + }, + "transcript", + { + data_type => "text", + default_value => "", + is_nullable => 0, + }, ); __PACKAGE__->set_primary_key("id");