discourse/db/migrate/20170511071355_remove_convert_pasted_image_site_setting.rb
2017-05-11 09:16:53 +02:00

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