fixing up the authenticator to allow identiy chaining

This commit is contained in:
2018-07-10 21:55:47 +02:00
parent 598f2f8024
commit d74b76da3e
41 changed files with 513 additions and 346 deletions
@@ -17,7 +17,7 @@ class CreateUsersTable extends Migration
$table->increments('id');
$table->timestamps();
$table->string('name');
$table->string('email')->unique();
$table->string('email')->unique()->nullable();
$table->string('password')->nullable();
$table->rememberToken();
});