diff --git a/lib/NGCP/Schema/Result/ncos_levels.pm b/lib/NGCP/Schema/Result/ncos_levels.pm index dc7a00c3..d023262f 100644 --- a/lib/NGCP/Schema/Result/ncos_levels.pm +++ b/lib/NGCP/Schema/Result/ncos_levels.pm @@ -49,6 +49,8 @@ __PACKAGE__->add_columns( is_foreign_key => 1, is_nullable => 1, }, + "expose_to_customer", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); __PACKAGE__->set_primary_key("id"); diff --git a/lib/NGCP/Schema/Result/ncos_sets.pm b/lib/NGCP/Schema/Result/ncos_sets.pm index f860f381..250420f3 100644 --- a/lib/NGCP/Schema/Result/ncos_sets.pm +++ b/lib/NGCP/Schema/Result/ncos_sets.pm @@ -31,6 +31,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 0, size => 255 }, "description", { data_type => "varchar", is_nullable => 1, size => 255 }, + "expose_to_customer", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); __PACKAGE__->set_primary_key("id");