Rails4: replace deprecated Relation#update_all at SetDefaultRepositories db migration

git-svn-id: http://svn.redmine.org/redmine/trunk@12494 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2014-01-07 14:54:20 +00:00
parent 9eaa4a7c1a
commit 1d0c93792b
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ class SetDefaultRepositories < ActiveRecord::Migration
# Sets the last repository as default in case multiple repositories exist for the same project
Repository.connection.select_values("SELECT r.id FROM #{Repository.table_name} r" +
" WHERE r.id = (SELECT max(r1.id) FROM #{Repository.table_name} r1 WHERE r1.project_id = r.project_id)").each do |i|
Repository.update_all(["is_default = ?", true], ["id = ?", i])
Repository.where(["id = ?", i]).update_all(["is_default = ?", true])
end
end