From 8e681db64a88b69035d61add46f7532be4d51c20 Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Tue, 12 Nov 2013 17:22:45 +0100 Subject: [PATCH] MT#4025 Add contract_default flag to sound sets --- lib/NGCP/Schema/Result/voip_sound_sets.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/NGCP/Schema/Result/voip_sound_sets.pm b/lib/NGCP/Schema/Result/voip_sound_sets.pm index 722641c0..fabb11f5 100644 --- a/lib/NGCP/Schema/Result/voip_sound_sets.pm +++ b/lib/NGCP/Schema/Result/voip_sound_sets.pm @@ -28,6 +28,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 256 }, "description", { data_type => "varchar", is_nullable => 1, size => 255 }, + "contract_default", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); __PACKAGE__->set_primary_key("id");