Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

049_add_wiki_destroy_page_permission.rb 433B

123456789101112
  1. class AddWikiDestroyPagePermission < ActiveRecord::Migration
  2. # model removed
  3. class Permission < ActiveRecord::Base; end
  4. def self.up
  5. Permission.create :controller => 'wiki', :action => 'destroy', :description => 'button_delete', :sort => 1740, :is_public => false, :mail_option => 0, :mail_enabled => 0
  6. end
  7. def self.down
  8. Permission.where(:controller => "wiki", :action => "destroy").each {|p| p.destroy}
  9. end
  10. end