From 9373963c947818bfbd8cd13da4c8cfcb59369a04 Mon Sep 17 00:00:00 2001 From: Rick Barrette Date: Sun, 9 Aug 2026 20:47:55 -0400 Subject: [PATCH] Fix association type for issues in Estimate model --- app/models/estimate.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/estimate.rb b/app/models/estimate.rb index 1f2c2f8..298f854 100644 --- a/app/models/estimate.rb +++ b/app/models/estimate.rb @@ -10,7 +10,7 @@ class Estimate < QboBaseModel - has_and_belongs_to_many :issues + has_many :issues belongs_to :customer validates_presence_of :doc_number, :id self.primary_key = :id