view .svn/pristine/20/20cfc1def6cf64da0d22e9f4697140fef8698ede.svn-base @ 1298:4f746d8966dd redmine_2.3_integration

Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author Chris Cannam
date Fri, 14 Jun 2013 09:28:30 +0100
parents 622f24f53b42
children
line wrap: on
line source
class AddUniqueIndexOnCustomFieldsTrackers < ActiveRecord::Migration
  def up
    table_name = "#{CustomField.table_name_prefix}custom_fields_trackers#{CustomField.table_name_suffix}"
    duplicates = CustomField.connection.select_rows("SELECT custom_field_id, tracker_id FROM #{table_name} GROUP BY custom_field_id, tracker_id HAVING COUNT(*) > 1")
    duplicates.each do |custom_field_id, tracker_id|
      # Removes duplicate rows
      CustomField.connection.execute("DELETE FROM #{table_name} WHERE custom_field_id=#{custom_field_id} AND tracker_id=#{tracker_id}")
      # And insert one
      CustomField.connection.execute("INSERT INTO #{table_name} (custom_field_id, tracker_id) VALUES (#{custom_field_id}, #{tracker_id})")
    end

    if index_exists? :custom_fields_trackers, [:custom_field_id, :tracker_id]
      remove_index :custom_fields_trackers, [:custom_field_id, :tracker_id]
    end
    add_index :custom_fields_trackers, [:custom_field_id, :tracker_id], :unique => true
  end

  def down
    if index_exists? :custom_fields_trackers, [:custom_field_id, :tracker_id]
      remove_index :custom_fields_trackers, [:custom_field_id, :tracker_id]
    end
    add_index :custom_fields_trackers, [:custom_field_id, :tracker_id]
  end
end