From 57b4791a4a816a9233da2b28d3e28433413049ae Mon Sep 17 00:00:00 2001 From: Frederick Holland Date: Thu, 23 Oct 2025 16:30:35 +1100 Subject: [PATCH] Fixed typo --- models/participant.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/participant.go b/models/participant.go index 03318c9..279e4e0 100644 --- a/models/participant.go +++ b/models/participant.go @@ -23,7 +23,7 @@ type DBParticipant struct { WrapupRequired *bool Sessions []DBSession `gorm:"foreignKey:ParticipantId;references:Id"` - Calls []DBCall `gorm:"foreignKey:ParticipantId;referencesId` + Calls []DBCall `gorm:"foreignKey:ParticipantId;references:Id` User GCUser `gorm:"foreignKey:UserId;references:Id` }