blob: ebe84416b576fc97a98a7d3685727af39edd90a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
class AddCustomFieldsPosition < ActiveRecord::Migration[4.2]
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
|