blob: d17afdc9db56a8e9232fdd1b253b4adb3b03bb94 (
plain)
1
2
3
4
5
6
7
8
9
|
class AddIssueCategoriesAssignedToId < ActiveRecord::Migration[4.2]
def self.up
add_column :issue_categories, :assigned_to_id, :integer
end
def self.down
remove_column :issue_categories, :assigned_to_id
end
end
|