2014-12-16 07:07:15 -05:00
|
|
|
class ResolveDuplicateGroupNames < ActiveRecord::Migration
|
|
|
|
|
|
|
|
def up
|
|
|
|
results = Group.exec_sql 'SELECT id FROM groups
|
|
|
|
WHERE name ILIKE
|
|
|
|
(SELECT lower(name)
|
|
|
|
FROM groups
|
|
|
|
GROUP BY lower(name)
|
|
|
|
HAVING count(*) > 1);'
|
|
|
|
|
|
|
|
groups = Group.where id: results.map { |r| r['id'] }
|
|
|
|
groups.group_by { |g| g.name.downcase }.each do |key, value|
|
|
|
|
value.each_with_index do |dup, index|
|
2017-07-27 21:20:09 -04:00
|
|
|
dup.update! name: "#{dup.name[0..18]}_#{index + 1}" if index > 0
|
2014-12-16 07:07:15 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
# does not reverse changes
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|