> Schema::create('password_resets', function (Blueprint $table) {
> $table->string('email')**->index();**
> $table->string('token');
> $table->timestamp('created_at')**->nullable();**
在迁移文件中,php风暴就是说
找不到方法'索引' 照亮\支持\流利和 在主题文章中找不到引用的方法。
在任何迁移失败中,我都无法链接:
Schema::table('posts', function (Blueprint $table) {
$table->unsignedInteger('user_id');
$table->foreign('user_id')->references('id')->on('users');
}