From what I've read, the hash generated by bcrypt should be stored as type CHAR(60).
Now, should those bcrypt hashes be stored in the main User table together with the user's UserID and Username, or should it be stored in its own table with 2 columns (UserID, BcryptHash)?
Usertable.