mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 19:38:24 +00:00
9 lines
192 B
Ruby
9 lines
192 B
Ruby
class RemoveConvertPastedImageSiteSetting < ActiveRecord::Migration
|
|
def up
|
|
execute "DELETE FROM site_settings WHERE name = 'convert_pasted_images_to_hq_jpg'"
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|