90d33c3e51
* notification on any event on all his projects * notification on any event on selected projects only (if the user belongs to more than 1 project) * notification only for things that he watches or he is involded in (eg. issues that he watches or he is author or assignee) git-svn-id: http://redmine.rubyforge.org/svn/trunk@855 e93f8b46-1217-0410-a6f0-8f06a7374b81
10 lines
242 B
Ruby
10 lines
242 B
Ruby
class AddMembersMailNotification < ActiveRecord::Migration
|
|
def self.up
|
|
add_column :members, :mail_notification, :boolean, :default => false, :null => false
|
|
end
|
|
|
|
def self.down
|
|
remove_column :members, :mail_notification
|
|
end
|
|
end
|