024_add_roadmap_permission.rb
12 lines
| 445 B
| text/x-ruby
|
RubyLexer
|
r225 | class AddRoadmapPermission < ActiveRecord::Migration | ||
|
r663 | # model removed | ||
class Permission < ActiveRecord::Base; end | ||||
|
r225 | def self.up | ||
|
r237 | Permission.create :controller => "projects", :action => "roadmap", :description => "label_roadmap", :sort => 107, :is_public => true, :mail_option => 0, :mail_enabled => 0 | ||
|
r225 | end | ||
def self.down | ||||
Permission.find(:first, :conditions => ["controller=? and action=?", 'projects', 'roadmap']).destroy | ||||
end | ||||
end | ||||