Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下を使用して、暗号化されたパスワードの列を持つ既存のmysqlデータベースがあります。
crypt($password, "ab");
Laravel 4がそれらを認識し、認証に失敗しないように、現在のパスワードをすべて変更したいと思います。どうすればそれを行うことができますか?
たとえば、ユーザーがログインするときに new_password という新しい列を作成し、一致する場合はまず古い暗号化列に対してパスワードをチェックします。パスワードを Laravel でハッシュし、new_password 列に入れます。しばらくすると、古いパスワード列を削除できます。