mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 07:33:37 +08:00
c0ac15575f
This site setting has always been experimental and hidden since it was added 7 years ago. Drop it to simplify the way we enable logging in a logstash friendly way.
12 lines
256 B
Ruby
12 lines
256 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoveLoggingProviderSiteSetting < ActiveRecord::Migration[7.1]
|
|
def up
|
|
execute "DELETE FROM site_settings WHERE name = 'logging_provider'"
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|