13 lines
421 B
Ruby
13 lines
421 B
Ruby
class IssueMove < ActiveRecord::Migration
|
|
# model removed
|
|
class Permission < ActiveRecord::Base; end
|
|
|
|
def self.up
|
|
Permission.create :controller => "projects", :action => "move_issues", :description => "button_move", :sort => 1061, :mail_option => 0, :mail_enabled => 0
|
|
end
|
|
|
|
def self.down
|
|
Permission.find(:first, :conditions => ["controller=? and action=?", 'projects', 'move_issues']).destroy
|
|
end
|
|
end
|