blob: 465c929ecde6304a433bb016c21859add3385c70 (
plain)
1
2
3
4
5
6
7
8
9
|
class SetCustomFieldsEditable < ActiveRecord::Migration
def self.up
UserCustomField.update_all('editable = false')
end
def self.down
UserCustomField.update_all('editable = true')
end
end
|