049_add_wiki_destroy_page_permission.rb
12 lines
| 418 B
| text/x-ruby
|
RubyLexer
|
r537 | class AddWikiDestroyPagePermission < ActiveRecord::Migration | ||
|
r663 | # model removed | ||
class Permission < ActiveRecord::Base; end | ||||
|
r537 | def self.up | ||
Permission.create :controller => 'wiki', :action => 'destroy', :description => 'button_delete', :sort => 1740, :is_public => false, :mail_option => 0, :mail_enabled => 0 | ||||
end | ||||
def self.down | ||||
Permission.find_by_controller_and_action('wiki', 'destroy').destroy | ||||
end | ||||
end | ||||