Good morning.
I have a login and registration system via PHP, with MySQL database. In this database I have a table with login, password, name and other details of the users.
When implementing the Facebook login, I had a question.
To store the FBID, Facebook name and surname, FB email, etc., it would be more convenient / recommended to save in the same users table (having to merge some information) or create a new table to store the FB data and then bind only the PK of this table in the main user table?
What do you recommend / how do you usually do?
Thank you in advance.