summaryrefslogtreecommitdiff
path: root/db/migrate/20150425164647_remove_duplicate_tags.rb
blob: e77623bf5078f070bbc5571cbdcc51f3e14a996a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# rubocop:disable all
class RemoveDuplicateTags < ActiveRecord::Migration
  def up
    select_all("SELECT name, COUNT(id) as cnt FROM tags GROUP BY name HAVING COUNT(id) > 1").each do |tag|
      tag_name = quote_string(tag["name"])
      duplicate_ids = select_all("SELECT id FROM tags WHERE name = '#{tag_name}'").map{|tag| tag["id"]}
      origin_tag_id = duplicate_ids.first
      duplicate_ids.delete origin_tag_id

      execute("UPDATE taggings SET tag_id = #{origin_tag_id} WHERE tag_id IN(#{duplicate_ids.join(",")})")
      execute("DELETE FROM tags WHERE id IN(#{duplicate_ids.join(",")})")
    end
  end

  def down
    
  end
end