We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
To keep all uploaded files use an initializer like this:
CarrierWave.configure do |config| config.remove_previously_stored_files_after_update = false end
If you want to configure that on a per-uploaded basis:
class AvatarUploader < CarrierWave::Uploader::Base configure do |config| config.remove_previously_stored_files_after_update = false end ... end