<?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('key', 255)->unique();
$table->longText('value')->nullable();
$table->string('group', 100)->default('general');
$table->timestamps();
});
}
public function down(): void { Schema::dropIfExists('settings'); }
};