TT#134806 add ignore_domain column

fee matching works in 2 attempts:
1. try to find a fee matching <user@domain>
2. if none found, try to find a fee matching <user>

the billing_profile record will get a new field
"ignore_domain". if set to "1", step#1 above
should be skipped.

see 1af70b001db36cfbd9791ab90b7030cfa35a110e

Change-Id: Ia188a79e775d851e2309116232973d61acff6a20
(cherry picked from commit b6a882c293)
mr9.5.2
Rene Krenn 4 years ago
parent dbc7294247
commit 3c9e4a7f7e

@ -108,6 +108,12 @@ __PACKAGE__->add_columns(
datetime_undef_if_invalid => 1,
is_nullable => 1,
},
"ignore_domain",
{
data_type => "tinyint",
default_value => 0,
is_nullable => 0,
},
);
__PACKAGE__->set_primary_key("id");

Loading…
Cancel
Save