I'm building the next Facebook!! No, kidding.
I'm building a simple site to help me learn. It will allow users to log in with an email and password.
There will be other information collected from the user that is pertinent to the sites functions.
Using the supplied Kohana Auth module, should I store the separate data in another table?
Example:
The 'users' table has these rows... id, username, email, password, logins, last_login.
Suppose I want to store these for each user in addition... location_id, photo, favorite_color, bio
Should I create another table or just extend this table? How would you do this? Thanks!!