mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
move emoji to correct location without a post rebake
This commit is contained in:
parent
52c202b05e
commit
adf355567c
1 changed files with 9 additions and 0 deletions
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 a new issue