# -*- coding: utf-8 -*-
class AddDowntimesToReports < ActiveRecord::Migration
  def self.up
#    add_column :reports, :downtime_ids, :string
#    add_column :reports, :downtime_tags, :text
  end

  def self.down
    remove_column :reports, :downtime_tracker_id
    remove_column :reports, :downtime_description
  end
end
