35 lines
1016 B
Ruby
35 lines
1016 B
Ruby
#-- copyright
|
|
# ChiliProject is a project management system.
|
|
#
|
|
# Copyright (C) 2010-2011 the ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
class AddProjectsTrackersUniqueIndex < ActiveRecord::Migration
|
|
def self.up
|
|
remove_duplicates
|
|
add_index :projects_trackers, [:project_id, :tracker_id], :name => :projects_trackers_unique, :unique => true
|
|
end
|
|
|
|
def self.down
|
|
remove_index :projects_trackers, :name => :projects_trackers_unique
|
|
end
|
|
|
|
# Removes duplicates in projects_trackers table
|
|
def self.remove_duplicates
|
|
Project.find(:all).each do |project|
|
|
ids = project.trackers.collect(&:id)
|
|
unless ids == ids.uniq
|
|
project.trackers.clear
|
|
project.tracker_ids = ids.uniq
|
|
end
|
|
end
|
|
end
|
|
end
|