From 1da72360c29deb907f46413b7eaa75013555b39b Mon Sep 17 00:00:00 2001 From: Frederick Holland Date: Tue, 30 Jun 2026 13:50:41 +1000 Subject: [PATCH] Added InternalInterpreter field to CRMInterpreter --- models/crm_interpreter.go | 1 + 1 file changed, 1 insertion(+) diff --git a/models/crm_interpreter.go b/models/crm_interpreter.go index 0382802..5efe9a8 100644 --- a/models/crm_interpreter.go +++ b/models/crm_interpreter.go @@ -37,6 +37,7 @@ type CrmInterpreter struct { PinViaSMS *bool `gorm:"column:pin_via_sms" json:"pin_via_sms"` VaxFluCheck *bool `gorm:"column:vax_flu_check" json:"vax_flu_check"` WorkingWithChildren *bool `gorm:"column:working_with_children" json:"working_with_children"` + InternalInterpreter *bool `gorm:"column:internal_interpreter" json:"internal_interpreter"` LastContactAttempt *time.Time `gorm:"column:last_contact_attempt" json:"last_contact_attempt"` MigrationYear *time.Time `gorm:"column:migration_year" json:"migration_year"` FirstName *string `gorm:"column:first_name" json:"first_name"`