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