Mercurial > hg > soundsoftware-site
view db/migrate/025_add_search_permission.rb @ 1532:a0460a3d154f cannam
Toward getting the user id for a committer by name as well as login/email
author | Chris Cannam |
---|---|
date | Wed, 11 Feb 2015 13:13:03 +0000 |
parents | dffacf8a6908 |
children |
line wrap: on
line source
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