b2in/database/migrations/2026_02_12_000004_create_settings_table.php
2026-02-20 17:57:50 +01:00

28 lines
769 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('settings', function (Blueprint $table) {
$table->id();
$table->string('group')->index();
$table->string('key');
$table->text('value')->nullable();
$table->string('type')->default('string')->comment('string, integer, boolean, json');
$table->text('description')->nullable();
$table->timestamps();
$table->unique(['group', 'key']);
});
}
public function down(): void
{
Schema::dropIfExists('settings');
}
};