030_add_projects_feeds_permissions.rb
12 lines
| 438 B
| text/x-ruby
|
RubyLexer
|
r336 | class AddProjectsFeedsPermissions < ActiveRecord::Migration | ||
|
r663 | # model removed | ||
class Permission < ActiveRecord::Base; end | ||||
|
r336 | def self.up | ||
Permission.create :controller => "projects", :action => "feeds", :description => "label_feed_plural", :sort => 132, :is_public => true, :mail_option => 0, :mail_enabled => 0 | ||||
end | ||||
def self.down | ||||
|
r12147 | Permission.where(:controller => "projects", :action => "feeds").each {|p| p.destroy} | ||
|
r336 | end | ||
end | ||||