Commit 531629e4 authored by SammyK's avatar SammyK

Fix password column for future hashing

parent 754d78ec
...@@ -16,7 +16,7 @@ class CreateUsersTable extends Migration ...@@ -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();
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment