id(); $table->string('key', 64)->unique(); $table->longText('value')->nullable(); $table->string('type', 16)->default('string'); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('settings'); } };