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('seo_settings', function (Blueprint $table) { $table->id(); $table->string('meta_title')->default('FF UID Checker'); $table->text('meta_description')->nullable(); $table->string('meta_keywords')->nullable(); $table->string('og_image')->nullable(); $table->string('og_title')->nullable(); $table->text('og_description')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('seo_settings'); } };