discourse/db/migrate/20211124161346_queue_internal_onebox_rebake.rb
2023-01-09 11:59:41 +00:00

17 lines
440 B
Ruby

# frozen_string_literal: true
class QueueInternalOneboxRebake < ActiveRecord::Migration[6.1]
def up
# Prior to this fix, internal oneboxes were bypassing the CDN for avatar URLs.
# If a site has a CDN, queue up a rebake in the background
execute <<~SQL if GlobalSetting.cdn_url
UPDATE posts SET baked_version = 0
WHERE cooked LIKE '%src="/user_avatar/%'
SQL
end
def down
# Do nothing
end
end