From eec9bf2cbef4ef2f2b6a04c074c5138338daa7fd Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Wed, 1 Oct 2025 16:15:14 +0200 Subject: [PATCH] Touch colections when creating columns --- app/models/column.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/column.rb b/app/models/column.rb index f62a728ce..27bfa8a06 100644 --- a/app/models/column.rb +++ b/app/models/column.rb @@ -1,5 +1,5 @@ class Column < ApplicationRecord - belongs_to :collection + belongs_to :collection, touch: true has_many :cards, dependent: :nullify validates :name, presence: true