-- Migration: prevent duplicate reports of the same user by the same reporter.

ALTER TABLE `report_user_by_user`
  ADD UNIQUE KEY `report_user_by_user_user_reported_uq` (`user_id`, `reported_user_id`);
