2018-11-13 02:27:31 -05:00
|
|
|
class RemoveDuplicatedNotificationSettings < ActiveRecord::Migration[4.2]
|
2016-06-03 14:49:34 -04:00
|
|
|
def up
|
2016-06-08 06:27:31 -04:00
|
|
|
duplicates = exec_query(%Q{
|
|
|
|
SELECT user_id, source_type, source_id
|
|
|
|
FROM notification_settings
|
|
|
|
GROUP BY user_id, source_type, source_id
|
|
|
|
HAVING COUNT(*) > 1
|
|
|
|
})
|
|
|
|
|
|
|
|
duplicates.each do |row|
|
|
|
|
uid = row['user_id']
|
|
|
|
stype = connection.quote(row['source_type'])
|
|
|
|
sid = row['source_id']
|
|
|
|
|
|
|
|
execute(%Q{
|
|
|
|
DELETE FROM notification_settings
|
|
|
|
WHERE user_id = #{uid}
|
|
|
|
AND source_type = #{stype}
|
|
|
|
AND source_id = #{sid}
|
|
|
|
AND id != (
|
|
|
|
SELECT id FROM (
|
|
|
|
SELECT min(id) AS id
|
|
|
|
FROM notification_settings
|
|
|
|
WHERE user_id = #{uid}
|
|
|
|
AND source_type = #{stype}
|
|
|
|
AND source_id = #{sid}
|
|
|
|
) min_ids
|
|
|
|
)
|
|
|
|
})
|
|
|
|
end
|
2016-06-03 14:49:34 -04:00
|
|
|
end
|
|
|
|
end
|