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 | |
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 | |