1
0
espelhamento de https://github.com/redmine/redmine.git sincronizado 2024-08-26 17:58:38 +02:00
redmine/db/migrate/103_set_custom_fields_editable.rb

10 linhas
270 B
Ruby
Original Visão normal Histórico

class SetCustomFieldsEditable < ActiveRecord::Migration
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