File size: 212 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 |
class AddAttachmentPhotoToPosts < ActiveRecord::Migration[5.2]
def self.up
change_table :posts do |t|
t.attachment :photo
end
end
def self.down
remove_attachment :posts, :photo
end
end
|