class AddOrganizationToProject < ActiveRecord::Migration
  def up
    add_column :projects, :organization_id, :integer
  end

  def down
    remove_column :projects, :organization_id
  end
end