index('user_id', 'profiles_user_id_index'); $table->index('last_fetched_at', 'profiles_last_fetched_at_index'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::table('profiles', function (Blueprint $table) { $table->dropIndex('profiles_user_id_index'); $table->dropIndex('profiles_last_fetched_at_index'); }); } };