master
1class MakePhotosPolymorphic < ActiveRecord::Migration
2 def change
3 rename_column :photos, :creation_id, :imageable_id
4 add_column :photos, :imageable_type, :string
5 end
6end