From d3eee10b6c9fddaa0fc41af9d40e04665243e83c Mon Sep 17 00:00:00 2001 From: Andreas Granig <agranig@sipwise.com> Date: Tue, 15 Oct 2013 18:24:40 +0200 Subject: [PATCH] MT#3971 Add max_subscribers column to contracts. --- lib/NGCP/Schema/Result/contracts.pm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/NGCP/Schema/Result/contracts.pm b/lib/NGCP/Schema/Result/contracts.pm index 60a914c4..0b57259a 100644 --- a/lib/NGCP/Schema/Result/contracts.pm +++ b/lib/NGCP/Schema/Result/contracts.pm @@ -72,6 +72,12 @@ __PACKAGE__->add_columns( datetime_undef_if_invalid => 1, is_nullable => 1, }, + "max_subscribers", + { + data_type => "integer", + extra => { unsigned => 1 }, + is_nullable => 1, + }, ); __PACKAGE__->set_primary_key("id");