mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
BUGFIX, selecting uploaded avatars incorrectly in some cases
This commit is contained in:
parent
252e93d0f2
commit
70ae998059
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue