Fix future query problems (current users not affected either way) [skip ci]

This commit is contained in:
James Cole
2016-09-20 09:32:58 +02:00
parent 11385494eb
commit e5f7228fa9

View File

@@ -30,7 +30,7 @@ class CreateUsersTable extends Migration
$table->timestamps();
$table->string('email', 255);
$table->string('password', 60);
$table->string('remember_token', 100);
$table->string('remember_token', 100)->nullable();
$table->string('reset', 32)->nullable();
$table->tinyInteger('blocked', false, true)->default('0');
$table->string('blocked_code', 25)->nullable();