Some background:
Users submit a form that has a category.
If (category has manager) {
send manager email
}
else {
send 'default' manager an email
}
For the sake of argument, manager_category has 2 columns; Manager's Email and Category
Admins can update the 'default' manager.
Whats the best practice for storing the 'default' manager?
Imo, adding another row in manager_category with 'default' as the Category is best.
Another option is to create a new table with 1 row and 1 column.
What is the best way to store this value?
EDIT: I should add that there's 4000+ categories. Most of them don't have rows.