LoginSignup
0
0

More than 1 year has passed since last update.

Laravelのエラーについてまとめ

Posted at

コマンドを実行したときのエラーまとめ

マイグレーションコマンド

Model already exists!

すでに同じ名前のモデルが作成されているために発生するエラー

appフォルダ直下に同じ名前のモデルファイルが存在する場合は
ファイルを削除すればコマンドを実行することができます。

php artisan make:model Test --migration

Nothing to migrate.

マイグレーションファイルは一度実行すると
ファイルの名前をリネームしない限り再利用できないため
ファイルの一部分で良いので名前を変えれば実行できます。

例:YYYY_MM_DD_xxxxx_create_test_table

※日付の部分もしくは、xxxxxの箇所を変更する

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