Skip to content
Snippets Groups Projects
003_issue_add_note.rb 828 B
Newer Older
#-- copyright
# ChiliProject is a project management system.
# Copyright (C) 2010-2011 the ChiliProject Team
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
# See doc/COPYRIGHT.rdoc for more details.
#++

Jean-Philippe Lang's avatar
Jean-Philippe Lang committed
class IssueAddNote < ActiveRecord::Migration
  # model removed
  class Permission < ActiveRecord::Base; end

Jean-Philippe Lang's avatar
Jean-Philippe Lang committed
  def self.up
    Permission.create :controller => "issues", :action => "add_note", :description => "label_add_note", :sort => 1057, :mail_option => 1, :mail_enabled => 0
  end

  def self.down
    Permission.find(:first, :conditions => ["controller=? and action=?", 'issues', 'add_note']).destroy
  end
end