「解決済み」のイベントをそれぞれリストアップしてください

個々の「解決済み」イベントを一覧表示するには、次のようなクエリを使用できます。

SELECT 
   acting_user_id, 
   target_topic_id AS topic_id, 
   target_post_id, 
   created_at::date
FROM user_actions
WHERE action_type=15
ORDER BY created_at DESC