Mercurial > hg > soundsoftware-site
view db/migrate/20100129193402_change_users_mail_notification_to_string.rb @ 1244:a3ed5c4d90f0 redmine-2.2-integration
The Create Project page now allows for correct search/insertion of tags. Using the new version of the redmine tags plugin.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Wed, 27 Mar 2013 14:52:16 +0000 |
parents | af80e5618e9b |
children | dffacf8a6908 |
line wrap: on
line source
class ChangeUsersMailNotificationToString < ActiveRecord::Migration 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')") 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'") remove_column :users, :mail_notification_char end end