photomix/db/migrate/20110411074351_remove_path_from_photos.rb

9 lines
133 B
Ruby

class RemovePathFromPhotos < ActiveRecord::Migration
def self.up
remove_column :photos, :path
end
def self.down
end
end