id(); $table->string('key')->unique(); $table->string('group')->nullable(); $table->string('type')->default('string'); $table->text('value')->nullable(); $table->string('description')->nullable(); $table->boolean('is_public')->default(false); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('settings'); } };