mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 09:43:44 +08:00
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
|