From d36061bc6ccd85b4d369717a1c6cbf84e1eda000 Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Wed, 20 Feb 2019 14:24:16 +0100 Subject: [PATCH] TT#51168 Add dev_id column to voip_dbaliases Change-Id: If97dd0ea6943ae2c9746c99c8d09f9e45607d29f --- lib/NGCP/Schema/Result/voip_dbaliases.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/NGCP/Schema/Result/voip_dbaliases.pm b/lib/NGCP/Schema/Result/voip_dbaliases.pm index 8c8a3b6a..48002b6a 100644 --- a/lib/NGCP/Schema/Result/voip_dbaliases.pm +++ b/lib/NGCP/Schema/Result/voip_dbaliases.pm @@ -38,6 +38,8 @@ __PACKAGE__->add_columns( }, "is_primary", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "is_devid", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); __PACKAGE__->set_primary_key("id");