boolean('indexable')->default(false)->index(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('profiles', function (Blueprint $table) { $table->dropColumn('indexable'); }); } };