看看這個圖片:https://postimg.org/image/4fvu34juz/爲什麼php artisan遷移失敗:未定義的方法?
當我運行PHP的工匠遷移,有顯示:
[symfony\component\debug\exception\fatalthrowableerror]
call to undefined method illuminate\database\schema\blueprint::textarea<>
解決我的問題的任何解決方案?
更新:
代碼:
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateFlightTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
Schema::create('flights', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('airline');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
Schema::drop('flights');
}
}
請顯示移植。 –
@Alexey Mezenin,我更新了我的問題 –
錯誤表示您嘗試在某處使用'textarea',因此您應該找到此遷移並將其顯示給我們。 –