BUGFIX, selecting uploaded avatars incorrectly in some cases

This commit is contained in:
Sam Saffron 2014-05-27 14:45:20 +10:00
parent 252e93d0f2
commit 70ae998059
1 changed files with 7 additions and 0 deletions

View File

@ -16,6 +16,13 @@ class AddUserAvatars < ActiveRecord::Migration
SELECT id, uploaded_avatar_id
FROM users
SQL
execute <<SQL
UPDATE users SET uploaded_avatar_id = NULL
WHERE NOT use_uploaded_avatar
SQL
# NOTE we should nuke use_uploaded_avatar later on
end
def down