Laragear/TwoFactor

View on GitHub
database/migrations/create_two_factor_authentications_table.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use Laragear\TwoFactor\Models\TwoFactorAuthentication;

return new class extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up(): void
    {
        if (! Schema::hasTable(TwoFactorAuthentication::$useTable)) {
            Schema::create(TwoFactorAuthentication::$useTable, function (Blueprint $table) {
                $table->id();
                $table->morphs('authenticatable', '2fa_auth_type_auth_id_index');
                $table->text('shared_secret');
                $table->timestampTz('enabled_at')->nullable();
                $table->string('label');
                $table->unsignedTinyInteger('digits')->default(6);
                $table->unsignedTinyInteger('seconds')->default(30);
                $table->unsignedTinyInteger('window')->default(0);
                $table->string('algorithm', 16)->default('sha1');
                $table->text('recovery_codes')->nullable();
                $table->timestampTz('recovery_codes_generated_at')->nullable();
                $table->json('safe_devices')->nullable();
                $table->timestampsTz();
            });
        }
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down(): void
    {
        Schema::dropIfExists(TwoFactorAuthentication::$useTable);
    }
};