summaryrefslogtreecommitdiffstats
path: root/db/migrate/002_issue_move.rb
blob: 98e95d3b9655c753ca2d01181d861d43ec10f650 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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.where("controller=? and action=?", 'projects', 'move_issues').first.destroy
  end
end