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
/
20120219161649_add_user_image_fingerprint.rb
1
class AddUserImageFingerprint < ActiveRecord::Migration[4.2]
2
def up
3
add_column :users, :image_fingerprint, :string, :null => true
4
end
5
6
def down
7
remove_column :users, :image_fingerprint
8
end
9
end