I am trying to migrate a database from Laravel 5.0 to Laravel 5.6, but when I am transferring the users
table the password
column does not get passed as it was before (I am assuming Laravel is hashing this again)
before :- $2y$10$KPCJK7wZ5lHdFMw7y3fchO3qXBvEuqS8wXzvH6vanETH5Pe7CBWVG
after :- $2y$10$B7hp5fGX6amcb.CBAnf8TeDxNAxwh5YAxOomi.AEsKfcdf7ovkxTy
I need some way to prevent Laravel from hashing the password. I am doing this to migrate my users table:
$user = new User;
$user->password = $request['password'];
$user->save();
I was using User::create()
before but it had the same issue.
I am really confused and stuck and any advice on this will be really helpful.
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire