#環境
・windows10
・PHP(7.3.6)
・Laravel(5.8.27)
・MariaDB
マイグレーションの設定に手こずったので記録用に
#問題
artisanでPostモデルを作成
model Post --migration
そして以下のコマンドを入力すると
php artisan migrate
エラーが発生
Illuminate\Database\QueryException : SQLSTATE[HY000] [1045] Access denied for user
'root'@'localhost' (using password: YES) (SQL: select * from information_schema.tables
where table_schema = test and table_name = migrations and table_type = 'BASE TABLE')
#解決
こちらのサイトが参考になりました
・[「Access denied for user ‘abcd’@’localhost’」と表示される]
(https://php1st.com/433)
どうやらユーザー「root」に対するパスワードが間違ってるぽい
.envファイル内のDBパスが
そして再びmigrateすると
Migration table created successfully.
成功