Fix password column for future hashing

This commit is contained in:
SammyK 2016-02-23 20:07:18 -06:00
parent 754d78ec8e
commit 531629e442
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ public function up()
$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();
}); });