class AddPpStringKeyToProviders < ActiveRecord::Migration
  def change
    add_column :providers, :pp_string_key, :string
    Provider.find_each do |prov|
      prov.pp_string_key=prov.string_key
      prov.save!
    end
  end
end
