Sha256: 28a0f40fd76dc520a26d239db3a4fd55c9bdecc9779c457359dcdbb7f1359ea8
Contents?: true
Size: 427 Bytes
Versions: 34
Compression:
Stored size: 427 Bytes
Contents
class AddSearchPermission < ActiveRecord::Migration # model removed class Permission < ActiveRecord::Base; end def self.up Permission.create :controller => "projects", :action => "search", :description => "label_search", :sort => 130, :is_public => true, :mail_option => 0, :mail_enabled => 0 end def self.down Permission.where(:controller => "projects", :action => "search").each {|p| p.destroy} end end
Version data entries
34 entries across 34 versions & 1 rubygems