46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
PHP
<?php
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::create('webauthn_keys', function (Blueprint $table) {
|
|
$table->id();
|
|
$table->foreignIdFor(User::class)->constrained()->cascadeOnDelete();
|
|
|
|
$table->string('name')->default('key');
|
|
$table->string('credentialId', 768);
|
|
$table->string('type', 255);
|
|
$table->text('transports');
|
|
$table->string('attestationType', 255);
|
|
$table->text('trustPath');
|
|
$table->text('aaguid');
|
|
$table->text('credentialPublicKey');
|
|
$table->bigInteger('counter')->unsigned();
|
|
$table->timestamps();
|
|
|
|
$table->index('credentialId');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::dropIfExists('webauthn_keys');
|
|
}
|
|
};
|