From a6b926c9bf7b3e96699f625d417c4d593d85e732 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20Bouzour=C3=A8ne?= Date: Thu, 30 Apr 2026 15:01:12 +0200 Subject: [PATCH] Email should not yet be unique in database --- models/people.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/people.go b/models/people.go index 4b0bafc..4e98532 100644 --- a/models/people.go +++ b/models/people.go @@ -13,7 +13,7 @@ type Person struct { IsContact bool FirstName string LastName string - Email string `gorm:"unique"` + Email string Phone string Mobile string Address1 string