TT#19459 add voip_cf_source_sets.mode

* values: whitelist, blacklist
    * default: whitelist

Change-Id: Ibb43ecf03787f2276dc535afb404ac395a8891f2
changes/95/14595/1
Kirill Solomko 8 years ago
parent bbb51a2066
commit 36bfc880f6

@ -25,6 +25,13 @@ __PACKAGE__->add_columns(
},
"name",
{ data_type => "varchar", is_nullable => 0, size => 255 },
"mode",
{
data_type => "enum",
default_value => "whitelist",
extra => { list => ["whitelist", "blacklist"] },
is_nullable => 0,
},
);
__PACKAGE__->set_primary_key("id");

Loading…
Cancel
Save