discourse/db/migrate/20121106015500_drop_avatar_url_from_users.rb
Sam Saffron 30990006a9 DEV: enable frozen string literal on all files
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
2019-05-13 09:31:32 +08:00

18 lines
618 B
Ruby

# frozen_string_literal: true
# avatar_url does not function properly as it does not properly deal with scaling.
# css based scaling is inefficient and has terrible results in both firefox and ie. canvas based scaling is slow.
#
# for local urls we need to upload an image and have a pointer to the upload, then use the upload id in the user table
# for gravatar we already have the email and can hash it
class DropAvatarUrlFromUsers < ActiveRecord::Migration[4.2]
def up
remove_column :users, :avatar_url
end
def down
add_column :users, :avatar_url, :string, null: false, default: ''
end
end