blob: ef940eb02dfc188eeb37efdcaa595f5639f2974a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class AddCustomFieldsPosition < ActiveRecord::Migration
def self.up
add_column(:custom_fields, :position, :integer, :default => 1)
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}")
end
end
end
def self.down
remove_column :custom_fields, :position
end
end
|