id(); $table->unsignedBigInteger('user_id'); $table->string('passkey_id')->unique(); $table->text('passkey'); $table->timestamps(); $table->foreign('user_id')->references('id')->on('users'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('passkeys'); } };