view db/migrate/002_issue_move.rb @ 1528:5047f066734d live

Fix merge failure in de.yml
author Chris Cannam
date Fri, 26 Sep 2014 10:18:42 +0100
parents 261b3d9a4903
children
line wrap: on
line source
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