Rails4: replace deprecated Relation#update_all at ChangeRepositoriesToFullSti db migration
git-svn-id: http://svn.redmine.org/redmine/trunk@12664 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
f890c775f1
commit
caf49264c8
|
@ -1,16 +1,21 @@
|
||||||
class ChangeRepositoriesToFullSti < ActiveRecord::Migration
|
class ChangeRepositoriesToFullSti < ActiveRecord::Migration
|
||||||
def up
|
def up
|
||||||
Repository.connection.select_rows("SELECT id, type FROM #{Repository.table_name}").each do |repository_id, repository_type|
|
Repository.connection.
|
||||||
|
select_rows("SELECT id, type FROM #{Repository.table_name}").
|
||||||
|
each do |repository_id, repository_type|
|
||||||
unless repository_type =~ /^Repository::/
|
unless repository_type =~ /^Repository::/
|
||||||
Repository.update_all ["type = ?", "Repository::#{repository_type}"], ["id = ?", repository_id]
|
Repository.where(["id = ?", repository_id]).
|
||||||
|
update_all(["type = ?", "Repository::#{repository_type}"])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def down
|
def down
|
||||||
Repository.connection.select_rows("SELECT id, type FROM #{Repository.table_name}").each do |repository_id, repository_type|
|
Repository.connection.
|
||||||
|
select_rows("SELECT id, type FROM #{Repository.table_name}").
|
||||||
|
each do |repository_id, repository_type|
|
||||||
if repository_type =~ /^Repository::(.+)$/
|
if repository_type =~ /^Repository::(.+)$/
|
||||||
Repository.update_all ["type = ?", $1], ["id = ?", repository_id]
|
Repository.where(["id = ?", repository_id]).update_all(["type = ?", $1])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue