1
0
mirror of https://github.com/juanfont/headscale.git synced 2024-10-17 20:05:55 +02:00

Require GivenName to be unique

This commit is contained in:
Kristoffer Dalby 2022-05-16 20:33:47 +02:00
parent 9b393eb861
commit 4aae917f74

View File

@ -51,7 +51,7 @@ type Machine struct {
//
// GivenName is the name used in all DNS related
// parts of headscale.
GivenName string
GivenName string `gorm:"type:varchar(63);unique_index"`
NamespaceID uint
Namespace Namespace `gorm:"foreignKey:NamespaceID"`