# -*- coding: utf-8 -*-
class AddLoginFromToReports < ActiveRecord::Migration
  def self.up
    add_column :reports, :login_from, :string
#    Handling.alps
  end

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