increments('id'); $table->string('key'); $table->text('value'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('settings', function (Blueprint $table) { $table->dropColumn('id'); }); } };