mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 03:48:23 +00:00
Flash was discontinued by Adobe at the end of 2020. There is no need to continue OneBox support for it
15 lines
284 B
Ruby
15 lines
284 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DropFlashOneboxSiteSetting < ActiveRecord::Migration[6.0]
|
|
def up
|
|
execute <<~SQL
|
|
DELETE FROM site_settings
|
|
WHERE name = 'enable_flash_video_onebox'
|
|
SQL
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|