mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-04 10:49:58 +08:00
15 lines
476 B
Ruby
15 lines
476 B
Ruby
# frozen_string_literal: true
|
|
|
|
class MoveEmojiToNewLocation < ActiveRecord::Migration[4.2]
|
|
def up
|
|
execute(
|
|
"update posts set cooked = regexp_replace(cooked, '\(<img[^\>]*)assets\/emoji\/', '\\1plugins\/emoji\/images\/' , 'g') where cooked like '%emoji%'",
|
|
)
|
|
end
|
|
|
|
def down
|
|
execute(
|
|
"update posts set cooked = regexp_replace(cooked, '\(<img[^\>]*)plugins\/emoji\/images\/', '\\1assets\/emoji\/' , 'g') where cooked like '%emoji%'",
|
|
)
|
|
end
|
|
end
|