Remove summary id column too

This commit is contained in:
Jorge Manrubia
2025-04-30 10:18:02 +02:00
parent e7400fe129
commit 2d2cd702ca
4 changed files with 21 additions and 16 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ require_relative "../config/environment"
ApplicationRecord.with_each_tenant do |tenant|
Card.find_each do |card|
card.events.find_each do |event|
Card::Eventable::SystemCommenter.new(card, event).comment
Card::Eventable::SystemCommenter.new(card.reload, event).comment
end
end
end