Hi Nick,
You can change the encryption of the user's password by altering the user with below Alter command :
-
mysql -uroot -p
-
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '';
It is a walk around because the caching_sha2_password is not supported wet.
So, my understanding (may not be right) is that by upgrading to mysql 8.0, it upgraded the password encrypting to caching_sha2_password. Because Laravel doesn't support it wet (and Sequel Pro in my case) wy need to use the hold encryption.
Thank you