From e312c5303d9b1742ff28efaf3051200ed8ae8dd0 Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Mon, 14 Oct 2013 14:24:45 +0200 Subject: [PATCH] MT#4007 Add destination to autoattendant. --- lib/NGCP/Schema/Result/voip_pbx_autoattendants.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/NGCP/Schema/Result/voip_pbx_autoattendants.pm b/lib/NGCP/Schema/Result/voip_pbx_autoattendants.pm index f9465467..6282c003 100644 --- a/lib/NGCP/Schema/Result/voip_pbx_autoattendants.pm +++ b/lib/NGCP/Schema/Result/voip_pbx_autoattendants.pm @@ -37,6 +37,8 @@ __PACKAGE__->add_columns( { data_type => "char", is_nullable => 0, size => 36 }, "choice", { data_type => "tinyint", is_nullable => 0 }, + "destination", + { data_type => "varchar", is_nullable => 0, size => 256 }, );