LoginSignup
3
1

More than 1 year has passed since last update.

php artisan migrate を実行しても、「Nothing to migrate. 」が返ってくる。

Last updated at Posted at 2022-08-06

起きている事象

migrationフォルダがあるのに、migrateが成功しない。

php artisan migrate

上記のコマンドを実行しても「Nothing to migrate. 」が返ってくる。
20220806-143102.png

解決方法

以下のコマンドで対応。
※既にテーブル内にデータが入っている場合は、それらが消えてしまうため注意が必要!!

php artisan migrate:fresh

もしくは

php artisan migrate:refresh

成功すると、以下のような内容のログが出力される。
20220806-143402.png

参考

https://teratail.com/questions/270041

3
1
4

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
3
1