You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While porting PearlBee to PostgreSQL, I noticed that your password salt column (user.salt) is too small. It is defined as char(24), but when I was testing on Postgres, it was producing 25 character salts.
If you are using MySQL in Strict SQL mode, this insert will rightfully fail (as it does in Postgres). If you want to run PearlBee and have a better-than-default config, your blog will break.
The text was updated successfully, but these errors were encountered:
While porting PearlBee to PostgreSQL, I noticed that your password salt column (
user.salt
) is too small. It is defined aschar(24)
, but when I was testing on Postgres, it was producing 25 character salts.If you are using MySQL in Strict SQL mode, this insert will rightfully fail (as it does in Postgres). If you want to run PearlBee and have a better-than-default config, your blog will break.
The text was updated successfully, but these errors were encountered: