To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / .svn / pristine / 63 / 63a7211a153e3b9ab2735ad4855dd71d9e56bc6b.svn-base @ 1297:0a574315af3e

History | View | Annotate | Download (223 Bytes)

1
class AddIssueCategoriesAssignedToId < ActiveRecord::Migration
2
  def self.up
3
    add_column :issue_categories, :assigned_to_id, :integer
4
  end
5

    
6
  def self.down
7
    remove_column :issue_categories, :assigned_to_id
8
  end
9
end