Merge pull request #3820 from sbine/master

Make password_resets.created_at nullable
This commit is contained in:
Taylor Otwell 2016-06-24 10:33:14 -05:00 committed by GitHub
commit 6e380aa8f2
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ public function up()
Schema::create('password_resets', function (Blueprint $table) {
$table->string('email')->index();
$table->string('token')->index();
$table->timestamp('created_at');
$table->timestamp('created_at')->nullable();
});
}