mirror of
https://github.com/discourse/discourse.git
synced 2024-11-27 11:20:57 -06:00
12 lines
300 B
Ruby
12 lines
300 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoveLikeCountFromPostMenu < ActiveRecord::Migration[5.2]
|
|
def up
|
|
execute(<<~SQL)
|
|
UPDATE site_settings
|
|
SET value = REGEXP_REPLACE(REPLACE(REPLACE(value, 'like-count', ''), '||', '|'), '^\\|', '')
|
|
WHERE name = 'post_menu'
|
|
SQL
|
|
end
|
|
end
|