I need to be able to store some information about the user and I was wondering the best way to approach this.
Social Media
id - user_id - facebook - twitter_username - display_tweets
Some quick questions:
- The Facebook field is just a yes or no to see if they have one, so I know whether or not to display the icon. Should that just be an enum 0 or 1? and 1 meaning they have one.
- Same with display_tweets should that just be an enum 0 or 1?
And then the main question is, should I just store these in the users table? So I would just add 3 fields, the facebook, twitter_username, and display_tweets. Also, some might not have either facebook or twitter. The users table already has 20 fields, so I don't want to make it TOO big.
Thanks!