I have to make a design decision with regards to fields in the database.
Given:
users table
Problem:
Visually we have a check box that says:
[*] check this box to not show this again
Should this data(boolean) be saved in the users
table in a column or in a new joint table that has the user_id
?
Which one scales better? faster?