From 12e1b052f82add6f42a6931e0e3837b3af9d9330 Mon Sep 17 00:00:00 2001 From: DarkGhosthunter Date: Mon, 1 Nov 2021 17:57:42 -0300 Subject: [PATCH] Fixes #17 --- .../migrations/2020_04_02_000000_create_web_authn_tables.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/2020_04_02_000000_create_web_authn_tables.php b/database/migrations/2020_04_02_000000_create_web_authn_tables.php index dd124c9..99824ef 100644 --- a/database/migrations/2020_04_02_000000_create_web_authn_tables.php +++ b/database/migrations/2020_04_02_000000_create_web_authn_tables.php @@ -24,7 +24,7 @@ public function up() $table->string('name')->nullable(); $table->string('type', 16); $table->json('transports'); - $table->json('attestation_type'); + $table->string('attestation_type'); $table->json('trust_path'); $table->uuid('aaguid'); $table->binary('public_key');