mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
a263743268
No longer used, the uppy method is now the default for composer uploads and the old code is deleted.
12 lines
284 B
Ruby
12 lines
284 B
Ruby
# frozen_string_literal: true
|
|
|
|
class DeleteExperimentalComposerUploadSetting < ActiveRecord::Migration[6.1]
|
|
def up
|
|
execute "DELETE FROM site_settings WHERE name = 'enable_experimental_composer_uploader'"
|
|
end
|
|
|
|
def down
|
|
raise ActiveRecord::IrreversibleMigration
|
|
end
|
|
end
|