9 lines
171 B
Ruby
9 lines
171 B
Ruby
class AddUserImage < ActiveRecord::Migration[4.2]
|
|
def self.up
|
|
add_column "users", "image", :text
|
|
end
|
|
|
|
def self.down
|
|
remove_column "users", "image"
|
|
end
|
|
end
|