我剛剛開始使用laravel 5.2 ..這是一個簡單的遷移文件,但是當我運行php artisan migrate命令時,我得到了屏幕截圖中顯示的錯誤。我現在應該怎麼做?Laravel 5.2基表或查看未找到錯誤
遷移文件
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateProductCategoryTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('product_category', function (Blueprint $table) {
$table->increments('id');
$table->string('product_category_name');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('product_category');
}
}