Files
biiproject-kit-v1/database/migrations/2026_04_17_125913_create_webauthn_credentials.php

11 lines
293 B
PHP

<?php
use Illuminate\Database\Schema\Blueprint;
use Laragear\WebAuthn\Models\WebAuthnCredential;
return WebAuthnCredential::migration()->with(function (Blueprint $table) {
// Here you can add custom columns to the Two Factor table.
//
// $table->string('alias')->nullable();
});