Laravel migrations: Class “not found”

前端 未结 16 1522
自闭症患者
自闭症患者 2020-12-12 14:38

I am deploying a Laravel barebone project to Microsoft Azure, but whenever I try to execute php artisan migrate I get the error:

[2015-06-13

16条回答
  •  佛祖请我去吃肉
    2020-12-12 15:34

    i also run in the same problem.

    The solution for me was to delete the migration file, AND delete the record from the "migrations" table in the database.

    After that, I ran

    composer dump-autoload

    and was finally able to reset/rollback migrations.

提交回复
热议问题