TT#2371 Add sms forward options

Change-Id: I14b6c166aef9eeee55b775bfd30143f11c53737e
changes/58/9858/2
Andreas Granig 9 years ago
parent 07ed8a1e48
commit fd3f6c6627

@ -125,7 +125,7 @@ __PACKAGE__->add_columns(
{
data_type => "enum",
default_value => "call",
extra => { list => ["call", "cfu", "cft", "cfb", "cfna"] },
extra => { list => ["call", "cfu", "cft", "cfb", "cfna", "sms", "cfs"] },
is_nullable => 0,
},
"call_status",
@ -486,7 +486,7 @@ NGCP::Schema::Result::cdr
data_type: 'enum'
default_value: 'call'
extra: {list => ["call","cfu","cft","cfb","cfna"]}
extra: {list => ["call","cfu","cft","cfb","cfna", "sms", "cfs"]}
is_nullable: 0
=head2 call_status

@ -43,7 +43,7 @@ __PACKAGE__->add_columns(
"direction",
{
data_type => "enum",
extra => { list => ["in", "out" ] },
extra => { list => ["in", "out", "forward" ] },
is_nullable => 0,
},
"caller",
@ -73,4 +73,4 @@ sub TO_JSON {
};
}
1;
1;

@ -27,7 +27,7 @@ __PACKAGE__->add_columns(
{
data_type => "enum",
default_value => "cfu",
extra => { list => ["cfu", "cfb", "cfna", "cft"] },
extra => { list => ["cfu", "cfb", "cfna", "cft", "cfs"] },
is_nullable => 0,
},
"destination_set_id",
@ -146,7 +146,7 @@ NGCP::Schema::Result::voip_cf_mappings
data_type: 'enum'
default_value: 'cfu'
extra: {list => ["cfu","cfb","cfna","cft"]}
extra: {list => ["cfu","cfb","cfna","cft","cfs"]}
is_nullable: 0
=head2 destination_set_id

Loading…
Cancel
Save