Merge pull request #3670 from SammyK/password-column-fix

Fix password column for future hashing
This commit is contained in:
Taylor Otwell
2016-02-23 21:12:28 -06:00

View File

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