Autologin togles working

This commit is contained in:
Chris
2018-10-15 09:52:36 +01:00
parent 99017d834e
commit cb9e014cf3
8 changed files with 105 additions and 45 deletions

View File

@@ -19,7 +19,7 @@ class CreateUsersTable extends Migration
$table->string('email')->unique();
$table->string('avatar')->nullable();
$table->string('password')->nullable();
$table->string('autologin')->nullable();
$table->string('autologin')->nullable()->index();
$table->boolean('public_front')->default(false);
$table->rememberToken();
$table->timestamps();