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