discourse/db/migrate/20130828192526_fix_optimized_images_urls.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

22 lines
790 B
Ruby

# frozen_string_literal: true
class FixOptimizedImagesUrls < ActiveRecord::Migration[4.2]
def up
# `AddUrlToOptimizedImages` was wrongly computing the URLs. This fixes it!
execute "UPDATE optimized_images
SET url = substring(oi.url from '^\\/uploads\\/[^/]+\\/_optimized\\/[0-9a-f]{3}\\/[0-9a-f]{3}\\/[0-9a-f]{11}')
|| '_'
|| oi.width
|| 'x'
|| oi.height
|| substring(oi.url from '\\.\\w{3,4}$')
FROM optimized_images oi
WHERE optimized_images.id = oi.id
AND oi.url ~ '^\\/uploads\\/[^/]+\\/_optimized\\/[0-9a-f]{3}\\/[0-9a-f]{3}\\/[0-9a-f]{11}\\.';"
end
def down
raise ActiveRecord::IrreversibleMigration
end
end