Commit 6e380aa8 authored by Taylor Otwell's avatar Taylor Otwell Committed by GitHub

Merge pull request #3820 from sbine/master

Make password_resets.created_at nullable
parents 47d7e2d4 be7b2627
......@@ -15,7 +15,7 @@ class CreatePasswordResetsTable extends Migration
Schema::create('password_resets', function (Blueprint $table) {
$table->string('email')->index();
$table->string('token')->index();
$table->timestamp('created_at');
$table->timestamp('created_at')->nullable();
});
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment