Sha256: dc884298c4e4fcfadfedbb1e87aa2864dbbd917ac7d66939a0dfa10cfbfa3a42
Contents?: true
Size: 433 Bytes
Versions: 34
Compression:
Stored size: 433 Bytes
Contents
class AddWikiDestroyPagePermission < ActiveRecord::Migration # model removed class Permission < ActiveRecord::Base; end 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.where(:controller => "wiki", :action => "destroy").each {|p| p.destroy} end end
Version data entries
34 entries across 34 versions & 1 rubygems