summaryrefslogtreecommitdiffstats
path: root/db/migrate/103_set_custom_fields_editable.rb
blob: c43846c3ad3328274a42f076f82b451aed9e26df (plain)
1
2
3
4
5
6
7
8
9
class SetCustomFieldsEditable < ActiveRecord::Migration[4.2]
  def self.up
    UserCustomField.update_all("editable = #{CustomField.connection.quoted_false}")
  end

  def self.down
    UserCustomField.update_all("editable = #{CustomField.connection.quoted_true}")
  end
end