mailwolt/database/migrations/2025_09_27_170356_create_se...

33 lines
727 B
PHP

<?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('group')->default('system')->index();
$table->string('key');
$table->text('value')->nullable();
$table->timestamps();
$table->unique(['group', 'key']);
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('settings');
}
};