diff --git a/lib/NGCP/Schema/Result/invoice_templates.pm b/lib/NGCP/Schema/Result/invoice_templates.pm index 755d3b67..0271e627 100644 --- a/lib/NGCP/Schema/Result/invoice_templates.pm +++ b/lib/NGCP/Schema/Result/invoice_templates.pm @@ -40,6 +40,13 @@ __PACKAGE__->add_columns( }, "data", { data_type => "mediumblob", is_nullable => 1 }, + "call_direction", + { + data_type => "enum", + default_value => "out", + extra => { list => [ "in", "out", "in_out" ] }, + is_nullable => 0, + }, );