projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Use correct link for users with no location
[rails.git]
/
db
/
migrate
/
011_add_user_image.rb
1
class AddUserImage < ActiveRecord::Migration[4.2]
2
def self.up
3
add_column "users", "image", :text
4
end
5
6
def self.down
7
remove_column "users", "image"
8
end
9
end