030_add_projects_feeds_permissions.rb
12 lines
| 423 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 | ||||
Permission.find_by_controller_and_action('projects', 'feeds').destroy | ||||
end | ||||
end | ||||