id(); $table->string('key')->unique(); $table->text('value')->nullable(); $table->string('type')->default('string'); // string, integer, boolean, json $table->text('description')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('app_settings'); } };