Mercurial > hg > soundsoftware-site
view .svn/pristine/1a/1ae20ea87464b5769eed93f455558d2b0e19460e.svn-base @ 1625:808a40a7cac7 live
Have a go at fixing #570 Can't delete downloadable file from version in project with no issue tracker
author | Chris Cannam |
---|---|
date | Thu, 07 Feb 2019 13:48:00 +0000 |
parents | 261b3d9a4903 |
children |
line wrap: on
line source
class AddUniqueIndexOnCustomFieldsProjects < ActiveRecord::Migration def up table_name = "#{CustomField.table_name_prefix}custom_fields_projects#{CustomField.table_name_suffix}" duplicates = CustomField.connection.select_rows("SELECT custom_field_id, project_id FROM #{table_name} GROUP BY custom_field_id, project_id HAVING COUNT(*) > 1") duplicates.each do |custom_field_id, project_id| # Removes duplicate rows CustomField.connection.execute("DELETE FROM #{table_name} WHERE custom_field_id=#{custom_field_id} AND project_id=#{project_id}") # And insert one CustomField.connection.execute("INSERT INTO #{table_name} (custom_field_id, project_id) VALUES (#{custom_field_id}, #{project_id})") end if index_exists? :custom_fields_projects, [:custom_field_id, :project_id] remove_index :custom_fields_projects, [:custom_field_id, :project_id] end add_index :custom_fields_projects, [:custom_field_id, :project_id], :unique => true end def down if index_exists? :custom_fields_projects, [:custom_field_id, :project_id] remove_index :custom_fields_projects, [:custom_field_id, :project_id] end add_index :custom_fields_projects, [:custom_field_id, :project_id] end end