File size: 236 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
class AddAttachmentImageToPosts < ActiveRecord::Migration[5.1]
  def self.up
    change_table :users do |t|
      t.attachment :profile_image_url
    end
  end

  def self.down
    remove_attachment :users, :profile_image_url
  end
end