move emoji to correct location without a post rebake

This commit is contained in:
Sam 2013-11-20 16:54:49 +11:00
parent 52c202b05e
commit adf355567c

View 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