Search code examples
phplaravellaravel-5lumenlaravel-artisan

artisan migrate results: SQLSTATE[HY000]: General error: 1005 on LUMEN / LARAVEL


I'm trying to run php artisan migrate command but I am getting the following error.
I have looked at many forums and tried several solutions but nothing solved my problem.
What is going on?

enter image description here

-

Migrations:


Solution

  • You can not create "produtos" table with a foreign key reference before creating "categorias" table

    i suggest to change to change date in migration files name to re-order migration

    so that migration of "categorias" table will run first

    i hope that answered the question.