blob: 8ec2e55e2d3cf483906c854eca1c2e9c5bb65335 (
plain) (
tree)
|
|
# This migration comes from refinery_images (originally 20120625093918)
class RemoveImageExtFromRefineryImages < ActiveRecord::Migration
def up
remove_column :refinery_images, :image_ext
end
def down
add_column :refinery_images, :image_ext, :string
end
end
|