From 80eef9c30200204fa1fd47ac34857e1e755ef45c Mon Sep 17 00:00:00 2001 From: AthiraKadampatta Date: Fri, 7 Oct 2022 11:10:21 +0530 Subject: [PATCH] 9726 Add attachment_width and attachment_height to the list of ignored columns for spree images --- app/models/spree/image.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/models/spree/image.rb b/app/models/spree/image.rb index 05f7f1ea32..c65b5b46ba 100644 --- a/app/models/spree/image.rb +++ b/app/models/spree/image.rb @@ -12,7 +12,9 @@ module Spree self.ignored_columns = %i(attachment_file_name attachment_content_type attachment_file_size - attachment_updated_at) + attachment_updated_at + attachment_width + attachment_height) has_one_attached :attachment