mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:30:26 -06:00
move emoji to correct location without a post rebake
This commit is contained in:
parent
52c202b05e
commit
adf355567c
9
db/migrate/20131120055018_move_emoji_to_new_location.rb
Normal file
9
db/migrate/20131120055018_move_emoji_to_new_location.rb
Normal file
@ -0,0 +1,9 @@
|
||||
class MoveEmojiToNewLocation < ActiveRecord::Migration
|
||||
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
|
Loading…
Reference in New Issue
Block a user