Update authenticationLog migration

This commit is contained in:
Bubka 2024-04-21 21:30:32 +02:00
parent 94541ac1e6
commit a3060a9ada

View File

@ -18,7 +18,8 @@ public function up(): void
$table->timestamp('logout_at')->nullable();
$table->boolean('cleared_by_user')->default(false);
$table->json('location')->nullable();
$table->string('auth_method', 40)->nullable();
$table->string('guard', 40)->nullable();
$table->string('login_method', 40)->nullable();
});
}