discourse/db/migrate/20141222224220_fix_emoji_pa...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
494 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class FixEmojiPathTake2 < ActiveRecord::Migration[4.2]
2014-12-22 19:12:26 -05:00
OLD_URL = "/plugins/emoji/images/"
NEW_URL = "/images/emoji/"
def up
execute <<-SQL
UPDATE posts
SET cooked = REPLACE(cooked, '#{OLD_URL}', '#{NEW_URL}')
WHERE cooked LIKE '%#{OLD_URL}%'
SQL
end
def down
execute <<-SQL
UPDATE posts
SET cooked = REPLACE(cooked, '#{NEW_URL}', '#{OLD_URL}')
WHERE cooked LIKE '%#{NEW_URL}%'
SQL
end
end