Retrospring/db/migrate/20141229085904_add_attachme...

12 lines
236 B
Ruby
Raw Normal View History

2014-12-29 01:18:12 -08:00
class AddAttachmentProfilePictureToUsers < ActiveRecord::Migration
def self.up
change_table :users do |t|
t.attachment :profile_picture
end
end
def self.down
remove_attachment :users, :profile_picture
end
end