# coding: utf-8
class AddLegalEntityIdToWorks < ActiveRecord::Migration
  def self.up
    add_column :works, :legal_entity_id, :integer
  end
  
  def self.down
    remove_column :works, :legal_entity_id
  end
end
