Fix a few password reminder things.

This commit is contained in:
Taylor Otwell
2014-10-22 19:16:02 -05:00
parent c10ad6269e
commit 36e0014a6a
2 changed files with 2 additions and 1 deletions

View File

@@ -17,6 +17,7 @@ class CreateUsersTable extends Migration {
$table->increments('id');
$table->string('email')->unique();
$table->string('password', 60);
$table->rememberToken();
$table->timestamps();
});
}