mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
FEATURE: support for emoji sets
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
This commit is contained in:
19
db/migrate/20141211114517_fix_emoji_path.rb
Normal file
19
db/migrate/20141211114517_fix_emoji_path.rb
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
||||
Reference in New Issue
Block a user