Sha256: 0da6a9298fe0493c1857410b0a85df9975c3c55f0468530cc4f4093d34ffadb9
Contents?: true
Size: 1.15 KB
Versions: 34
Compression:
Stored size: 1.15 KB
Contents
class SetDocAndFilesNotifications < ActiveRecord::Migration # model removed class Permission < ActiveRecord::Base; end def self.up Permission.where(:controller => "projects", :action => "add_file").each {|p| p.update_attribute(:mail_option, true)} Permission.where(:controller => "projects", :action => "add_document").each {|p| p.update_attribute(:mail_option, true)} Permission.where(:controller => "documents", :action => "add_attachment").each {|p| p.update_attribute(:mail_option, true)} Permission.where(:controller => "issues", :action => "add_attachment").each {|p| p.update_attribute(:mail_option, true)} end def self.down Permission.where(:controller => "projects", :action => "add_file").each {|p| p.update_attribute(:mail_option, false)} Permission.where(:controller => "projects", :action => "add_document").each {|p| p.update_attribute(:mail_option, false)} Permission.where(:controller => "documents", :action => "add_attachment").each {|p| p.update_attribute(:mail_option, false)} Permission.where(:controller => "issues", :action => "add_attachment").each {|p| p.update_attribute(:mail_option, false)} end end
Version data entries
34 entries across 34 versions & 1 rubygems