# -*- coding: utf-8 -*-
class AddFinnZpIdToShifts < ActiveRecord::Migration
  def self.up
    add_column :shifts, :finn_zp_id, :integer
  end

  def self.down
    remove_column :shifts, :finn_zp_id, :integer
  end
end
