0
0
Fork 0

Only re-download avatar if URL changed (fix #19)

This commit is contained in:
Eugen Rochko 2016-03-22 21:05:23 +01:00
parent 921f40c187
commit 02e4fb2e06
4 changed files with 66 additions and 4 deletions

View file

@ -0,0 +1,5 @@
class AddAvatarRemoteUrlToAccounts < ActiveRecord::Migration
def change
add_column :accounts, :avatar_remote_url, :string, null: true, default: nil
end
end