metamaps--metamaps/db/migrate/20140707161810_add_image_to_users.rb
2014-07-07 21:02:43 -04:00

10 lines
166 B
Ruby

class AddImageToUsers < ActiveRecord::Migration
def self.up
add_attachment :users, :image
end
def self.down
remove_attachment :users, :image
end
end