OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/db/migrate/20090312194159_add_projects...

34 lines
923 B

#-- encoding: UTF-8
#-- copyright
# OpenProject is a project management system.
#
# Copyright (C) 2012-2013 the OpenProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# 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