# -*- coding: utf-8 -*-
class AddMoneyProblemTrackerId < ActiveRecord::Migration
  def self.up
   # add_column :reports, :money_problem_tracker_id, :integer
   # add_column :reports, :status_false_tracker_id, :integer
    add_column :done_works, :comment, :string
  end

  def self.down
   # remove_column :reports, :money_problem_tracker_id
   # remove_column :reports, :status_false_tracker_id
  end
end
