Let's say we have a model with an image
class Player < ActiveRecord::Base
mount_uploader :image, ImageUploader
validates :name, presence: true
validates :image, presence: true
end
Saving a new object or editing the image is fine

but when you try to save a persisted model without editing the image, you get a validation error on the file upload field

Refers to #2339 #2373
Let's say we have a model with an image
Saving a new object or editing the image is fine

but when you try to save a persisted model without editing the image, you get a validation error on the file upload field
Refers to #2339 #2373