Here’s my question: In your experience, is it safer to have a single salt for every hash stored in the PHP file doing the hashing, or is it better to have a different salt for every hashed object and store it in the database with that object?
Share
The salt only makes sense if it is different for each hashed string.
So, yes, create additional column and put random salt there