mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
use symbol instead of string for 'position' in db migrate (#24013)
git-svn-id: http://svn.redmine.org/redmine/trunk@16009 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -4,7 +4,7 @@ class AddEnumerationsPosition < ActiveRecord::Migration
|
||||
Enumeration.all.group_by(&:opt).each do |opt, enums|
|
||||
enums.each_with_index do |enum, i|
|
||||
# do not call model callbacks
|
||||
Enumeration.where({:id => enum.id}).update_all("position = #{i+1}")
|
||||
Enumeration.where({:id => enum.id}).update_all(:position => (i+1))
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -4,7 +4,7 @@ class AddCustomFieldsPosition < ActiveRecord::Migration
|
||||
CustomField.all.group_by(&:type).each do |t, fields|
|
||||
fields.each_with_index do |field, i|
|
||||
# do not call model callbacks
|
||||
CustomField.where({:id => field.id}).update_all("position = #{i+1}")
|
||||
CustomField.where({:id => field.id}).update_all(:position => (i+1))
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -6,7 +6,7 @@ class RemoveIssueStatusesIsDefault < ActiveRecord::Migration
|
||||
def down
|
||||
add_column :issue_statuses, :is_default, :boolean, :null => false, :default => false
|
||||
# Restores the first status as default
|
||||
default_status_id = IssueStatus.order("position").pluck(:id).first
|
||||
default_status_id = IssueStatus.order(:position).pluck(:id).first
|
||||
IssueStatus.where(:id => default_status_id).update_all(:is_default => true)
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user