0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Laravel】既定Userのmigrationにてエラーが出た場合にチェックする点

Posted at

■前提
・Laravelでのプロジェクト作成が2回目以降であること
・databaseを作成済であること
・使っているdatabaseはmysqlであること

■概要
プロジェクト作成時に既定にあるUserテーブルに対してmigrationをかけた際に
エラーが2点発生した。
①既にuserテーブルが存在している(users already exists〜辺り)
85b91b6a14ed0427e14cce1d64749c67.png

②user_emailの設定にエラーがある(key was too long~の辺り)
d345df1fb0cfb2338f674b46c25d5dea.png

■対策
上記エラーに対しての対策は以下の通り。
①.envにてDB_DATABASEを今回作成したbatabase名に修正する
※今回はtodoというデータベースを作成しました。
af9345092081e0b3669017c43dffee5c.png

②database.php内のmysqlにて「charaset」/「collation」をutf8mb4からutf8に変更する。
88d117fae68472d365e39ba759165c18.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?