【发布时间】:2018-04-04 13:26:00
【问题描述】:
> Schema::create('password_resets', function (Blueprint $table) {
> $table->string('email')**->index();**
> $table->string('token');
> $table->timestamp('created_at')**->nullable();**
在迁移文件phpstorm中说的是
找不到方法“索引” Illuminate\Support\Fluent 和 在主题类中找不到引用的方法。
在任何迁移失败中,我都不能像这样链接:
Schema::table('posts', function (Blueprint $table) {
$table->unsignedInteger('user_id');
$table->foreign('user_id')->references('id')->on('users');
}
【问题讨论】: