1
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 user details.
When implementing Facebook login, I had a question.
To store the FBID, Facebook name and surname, FB email and etc, it would be more practical/recommended to save in the same table of users (having to merge some information) or create a new table to store Fb data and then link only the PK of that table in the main user table?
What you recommend / how you usually do?
Thanks in advance.