From aea75bcec1664e84bccbefc549319c0c925f2787 Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Fri, 11 Oct 2013 16:40:46 +0200 Subject: [PATCH] MT#3997 Add via_route column to voip_peer_hosts. --- lib/NGCP/Schema/Result/voip_peer_hosts.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/NGCP/Schema/Result/voip_peer_hosts.pm b/lib/NGCP/Schema/Result/voip_peer_hosts.pm index f66364b9..9cdf676a 100644 --- a/lib/NGCP/Schema/Result/voip_peer_hosts.pm +++ b/lib/NGCP/Schema/Result/voip_peer_hosts.pm @@ -35,6 +35,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", extra => { unsigned => 1 }, is_nullable => 1 }, "weight", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "via_route", + { data_type => "varchar", is_nullable => 1, size => 256 }, "via_lb", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, );