mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:16:22 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
34 lines
743 B
Ruby
34 lines
743 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddUserAvatars < ActiveRecord::Migration[4.2]
|
|
def up
|
|
create_table :user_avatars do |t|
|
|
t.integer :user_id, null: false
|
|
t.integer :system_upload_id
|
|
t.integer :custom_upload_id
|
|
t.integer :gravatar_upload_id
|
|
t.datetime :last_gravatar_download_attempt
|
|
t.timestamps null: false
|
|
end
|
|
|
|
add_index :user_avatars, [:user_id]
|
|
|
|
execute <<SQL
|
|
INSERT INTO user_avatars(user_id, custom_upload_id)
|
|
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
|
|
drop_table :user_avatars
|
|
end
|
|
end
|