024_add_roadmap_permission.rb
12 lines
| 427 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 | ||||
|
r10702 | Permission.where("controller=? and action=?", 'projects', 'roadmap').first.destroy | ||
|
r225 | end | ||
end | ||||