comparison .svn/pristine/f1/f1e7ec3ddd71987a3970082b6263c9cd1a7b8343.svn-base @ 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
children
comparison
equal deleted inserted replaced
1516:b450a9d58aed 1517:dffacf8a6908
1 class ChangeUsersMailNotificationToString < ActiveRecord::Migration
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
14 def self.down
15 rename_column :users, :mail_notification, :mail_notification_char
16 add_column :users, :mail_notification, :boolean, :default => true, :null => false
17 User.where("mail_notification_char <> 'all'").
18 update_all("mail_notification = #{connection.quoted_false}")
19 remove_column :users, :mail_notification_char
20 end
21 end