view .svn/pristine/63/63a7211a153e3b9ab2735ad4855dd71d9e56bc6b.svn-base @ 1169:492ff72268e3 bug_521

Close obsolete branch bug_521
author Chris Cannam
date Thu, 18 Oct 2012 10:42:48 +0100
parents cbb26bc654de
children
line wrap: on
line source
class AddIssueCategoriesAssignedToId < ActiveRecord::Migration
  def self.up
    add_column :issue_categories, :assigned_to_id, :integer
  end

  def self.down
    remove_column :issue_categories, :assigned_to_id
  end
end