I am learning about salt and hashing passwords. I have a node app that integrates with a SQL database. I am using the bcrypt node middleware to create hashed and salted passwords to store in my database. I've read up on how its not necessarily to make passwords expire except for a security threat...but what about hashes of the password?
In my perspective, wouldn't it make it more secure to randomly update every user's hashed password every week or so? The passwords would remain the same, but the server would generate and store a new hash.
If someone were to attempt to attack my website or the database, would having hashes randomly change help security?