blob: cb29098fda489c17bbc2b07dbf28206c61ae159c (
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.update_all "position = #{i+1}", {:id => field.id}
end
end
end
def self.down
remove_column :custom_fields, :position
end
end
|