From 2a5e53e0a6265d17f97adfc667a2521f2ab6431c Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Thu, 10 Dec 2015 14:59:33 +0100 Subject: [PATCH] MT#16895 Add prefix to lnp_providers table Change-Id: I0eb2ffd200a81804a22717560331132bc33a85ed --- lib/NGCP/Schema/Result/lnp_providers.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/NGCP/Schema/Result/lnp_providers.pm b/lib/NGCP/Schema/Result/lnp_providers.pm index f82a2ce5..1dfdb04e 100644 --- a/lib/NGCP/Schema/Result/lnp_providers.pm +++ b/lib/NGCP/Schema/Result/lnp_providers.pm @@ -13,6 +13,8 @@ __PACKAGE__->add_columns( { data_type => "integer", extra => { unsigned => 1 }, is_nullable => 0 }, "name", { data_type => "varchar", is_nullable => 1, size => 255 }, + "prefix", + { data_type => "varchar", is_nullable => 0, size => 32 }, ); __PACKAGE__->set_primary_key("id");