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