Laravel 5 Migrate Base table or view not found: 1146

前端 未结 12 620
情话喂你
情话喂你 2020-12-11 01:06

I am in big problem. I am trying to rum php artisan migrate to generate table migration, but i am getting

[2016-03-08 05:49:01] local.ERR

12条回答
  •  情书的邮戳
    2020-12-11 01:50

    Check your migration file, maybe you are using Schema::table, like this:

    Schema::table('table_name', function ($table)  {
        // ...
    });
    

    If you want to create a new table you must use Schema::create:

    Schema::create('table_name', function ($table)  {
        // ...
    });
    

    Laracast More information in this link.

提交回复
热议问题