我正在使用 laravel 身份验证。我更改了电子邮件列。我收到了这个错误:
SQLSTATE [42S22]:未找到列:1054 'where 子句'中的未知列 'email'(SQL:从
password_resets
where删除
我已将 ResetsPasswords 和 SendsPasswordResetEmails 文件和视图中的所有电子邮件字段更改为 userEmail。我是 laravel 的新手,所以我不明白它是如何工作的。
这是我的密码重置表
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePasswordResetsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('password_resets', function (Blueprint $table) {
$table->string('userEmail', 50)->index();
$table->string('token');
$table->timestamp('created_at')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('password_resets');
}
}