2007-02-04 09:18:40 +00:00
|
|
|
class AddRoadmapPermission < ActiveRecord::Migration
|
2007-08-29 16:52:35 +00:00
|
|
|
# model removed
|
|
|
|
class Permission < ActiveRecord::Base; end
|
|
|
|
|
2007-02-04 09:18:40 +00:00
|
|
|
def self.up
|
2007-02-05 18:20:39 +00:00
|
|
|
Permission.create :controller => "projects", :action => "roadmap", :description => "label_roadmap", :sort => 107, :is_public => true, :mail_option => 0, :mail_enabled => 0
|
2007-02-04 09:18:40 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
2012-12-03 18:25:57 +00:00
|
|
|
Permission.where("controller=? and action=?", 'projects', 'roadmap').first.destroy
|
2007-02-04 09:18:40 +00:00
|
|
|
end
|
|
|
|
end
|