mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:50:14 +08: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
20 lines
461 B
Ruby
20 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
|