diff db/migrate/20100129193402_change_users_mail_notification_to_string.rb @ 1517:dffacf8a6908 redmine-2.5

Update to Redmine SVN revision 13367 on 2.5-stable branch
author Chris Cannam
date Tue, 09 Sep 2014 09:29:00 +0100
parents 8661b858af72
children
line wrap: on
line diff
--- a/db/migrate/20100129193402_change_users_mail_notification_to_string.rb	Tue Sep 09 09:28:31 2014 +0100
+++ b/db/migrate/20100129193402_change_users_mail_notification_to_string.rb	Tue Sep 09 09:29:00 2014 +0100
@@ -2,16 +2,20 @@
   def self.up
     rename_column :users, :mail_notification, :mail_notification_bool
     add_column :users, :mail_notification, :string, :default => '', :null => false
-    User.update_all("mail_notification = 'all'", "mail_notification_bool = #{connection.quoted_true}")
-    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')")
+    User.where("mail_notification_bool = #{connection.quoted_true}").
+      update_all("mail_notification = 'all'")
+    User.where("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)").
+      update_all("mail_notification = 'selected'")
+    User.where("mail_notification NOT IN ('all', 'selected')").
+      update_all("mail_notification = 'only_my_events'")
     remove_column :users, :mail_notification_bool
   end
 
   def self.down
     rename_column :users, :mail_notification, :mail_notification_char
     add_column :users, :mail_notification, :boolean, :default => true, :null => false
-    User.update_all("mail_notification = #{connection.quoted_false}", "mail_notification_char <> 'all'")
+    User.where("mail_notification_char <> 'all'").
+      update_all("mail_notification = #{connection.quoted_false}")
     remove_column :users, :mail_notification_char
   end
 end