Retrospring/db/migrate/20141229085904_add_attachme...

12 lines
241 B
Ruby
Raw Normal View History

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