Displaying 1 result from an estimated 1 matches for "sales_rep_table".
2006 May 29
9
design recommendations for authenticating users with lots of different attributes..?
...o the users table, and then I might have
something like primary_city_id, which is something specific to a
sales_rep, so ideally, that should be referenced in the sales_rep_info
table, _not_ the users table.. So then I end up with a mixture of
associations spread through both the users table and the
sales_rep_table, some of which contain information specific to the
type of user, and some of which are generic relations.
Now that I''ve written things down, it seems like I should keep all
generic associations tied to the user table (ie roles, rights, etc),
and use the sales_rep_info table for informaito...