##// END OF EJS Templates
Fixed: 'View difference' broken on wiki page history (#6747)....
Fixed: 'View difference' broken on wiki page history (#6747). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4372 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r4254:73167fb4f26b
r4258:6f841b7f436e
Show More
20100129193813_update_mail_notification_values.rb
12 lines | 583 B | text/x-ruby | RubyLexer
/ db / migrate / 20100129193813_update_mail_notification_values.rb
# Patch the data from a boolean change.
class UpdateMailNotificationValues < ActiveRecord::Migration
def self.up
User.update_all("mail_notification = 'all'", "mail_notification IN ('1', 't')")
User.update_all("mail_notification = 'selected'", "EXISTS (SELECT 1 FROM #{Member.table_name} WHERE #{Member.table_name}.mail_notification = #{connection.quoted_true} AND #{Member.table_name}.user_id = #{User.table_name}.id)")
User.update_all("mail_notification = 'only_my_events'", "mail_notification NOT IN ('all', 'selected')")
end
def self.down
# No-op
end
end