feat: add PanelSetting to the dash panel

This commit is contained in:
idevakk
2025-10-02 19:48:45 +05:30
parent 47c6359663
commit 631143f160
7 changed files with 697 additions and 29 deletions

View File

@@ -0,0 +1,34 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('users', function (Blueprint $table) {
$table->text('app_authentication_secret')->nullable();
$table->text('app_authentication_recovery_codes')->nullable();
$table->boolean('has_email_authentication')->default(false);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('users', function (Blueprint $table) {
$table->dropColumn([
'app_authentication_secret',
'app_authentication_recovery_codes',
'has_email_authentication',
]);
});
}
};