##// END OF EJS Templates
Allow key authentication when deleting issues (with tests) #6447...
Allow key authentication when deleting issues (with tests) #6447 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4367 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2512:74d8739936c8
r4253:c55e060bab62
Show More
20090312194159_add_projects_trackers_unique_index.rb
21 lines | 605 B | text/x-ruby | RubyLexer
/ db / migrate / 20090312194159_add_projects_trackers_unique_index.rb
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