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