You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20100129193402_change_users_mail_notification_to_string.rb 1.1KB

123456789101112131415161718192021
  1. class ChangeUsersMailNotificationToString < ActiveRecord::Migration[4.2]
  2. def self.up
  3. rename_column :users, :mail_notification, :mail_notification_bool
  4. add_column :users, :mail_notification, :string, :default => '', :null => false
  5. User.where("mail_notification_bool = #{connection.quoted_true}").
  6. update_all("mail_notification = 'all'")
  7. 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)").
  8. update_all("mail_notification = 'selected'")
  9. User.where("mail_notification NOT IN ('all', 'selected')").
  10. update_all("mail_notification = 'only_my_events'")
  11. remove_column :users, :mail_notification_bool
  12. end
  13. def self.down
  14. rename_column :users, :mail_notification, :mail_notification_char
  15. add_column :users, :mail_notification, :boolean, :default => true, :null => false
  16. User.where("mail_notification_char <> 'all'").
  17. update_all("mail_notification = #{connection.quoted_false}")
  18. remove_column :users, :mail_notification_char
  19. end
  20. end