mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
e6e7948617
Added following emoji sets - Apple/International - Emoji One (default) - Android/Google - Twitter FIX: translations from plugins weren't properly merged with default translations FEATURE: new 'site_setting_changed' event
19 lines
461 B
Ruby
19 lines
461 B
Ruby
class FixEmojiPath < ActiveRecord::Migration
|
|
BASE_URL = '/plugins/emoji/images/'
|
|
|
|
def up
|
|
execute <<-SQL
|
|
UPDATE posts
|
|
SET cooked = REPLACE(cooked, '#{BASE_URL}', '#{BASE_URL}emoji_one/')
|
|
WHERE cooked LIKE '%#{BASE_URL}%'
|
|
SQL
|
|
end
|
|
|
|
def down
|
|
execute <<-SQL
|
|
UPDATE posts
|
|
SET cooked = REPLACE(cooked, '#{BASE_URL}emoji_one/', '#{BASE_URL}')
|
|
WHERE cooked LIKE '%#{BASE_URL}emoji_one/%'
|
|
SQL
|
|
end
|
|
end
|