Hello,
I have a best practice/efficiency/performance issue.
If I want to have a profile page for each user in my system and i already have a user model. Is it better to have all the users information in the user model and pull it on the show page of users
so users/show will access the user model and grab all the relevant data like about me, interests, etc.
OR
should I do something like create a profile model and do has_one :profile, in the user model and keep the relevant profile data in there?
This isn't a how to question but rather, what is known to be "best practice" and why use one method over another? Thanks!