????

Your IP : 3.133.157.86


Current Path : C:/inetpub/vhost/redmine/db/migrate/
Upload File :
Current File : C:/inetpub/vhost/redmine/db/migrate/20151020182731_fix_comma_in_user_format_setting_value.rb

class FixCommaInUserFormatSettingValue < ActiveRecord::Migration[4.2]
  def self.up
    Setting.
      where(:name => 'user_format', :value => 'lastname_coma_firstname').
      update_all(:value => 'lastname_comma_firstname')
  end

  def self.down
    Setting.
      where(:name => 'user_format', :value => 'lastname_comma_firstname').
      update_all(:value => 'lastname_coma_firstname')
  end
end