# -*- coding: utf-8 -*-
class AddPaymentDetailToReports < ActiveRecord::Migration
  def self.up
    add_column :reports, :payment_detail, :integer
  end

  def self.down
    remove_column :reports, :payment_detail
  end
end
