id(); $table->string(Setting::ATTRIBUTE_KEY)->index(); $table->text(Setting::ATTRIBUTE_VALUE); }); } } /** * Reverse the migrations. * * @return void */ public function down(): void { Schema::dropIfExists(Setting::TABLE); } };