Add migration for settings table: Created a new migration file to establish the settings table with necessary fields, including key, value, type, group, label, description, and soft delete functionality. Implemented indexes for key, group, and is_active columns to optimize queries.

This commit is contained in:
Ümit Tunç
2025-10-20 14:59:00 -03:00
parent a7ab40cde9
commit 9094e9c729
@@ -0,0 +1,40 @@
<?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::create('settings', function (Blueprint $table) {
$table->id();
$table->string('key')->unique();
$table->text('value')->nullable();
$table->enum('type', ['string', 'text', 'boolean', 'integer', 'float', 'array', 'json'])->default('string');
$table->string('group')->default('general');
$table->string('label');
$table->text('description')->nullable();
$table->boolean('is_public')->default(false);
$table->boolean('is_active')->default(true);
$table->timestamps();
$table->softDeletes();
$table->index('key');
$table->index('group');
$table->index('is_active');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('settings');
}
};