解決方案:
打開創建表的那個 migration 文件,在創建表的方法執行之前加一個判斷條件
if (!Schema::hasTable('password_resets')) {
Schema::create('password_resets', function (Blueprint $table) {
$table->string('email')->index();
$table->string('token');
$table->timestamp('created_at')->nullable();
});
}
