package models import "github.com/google/uuid" type Workspace struct { Id uint `gorm:"primaryKey" json:"id"` Name string `gorm:"column:name" json:"name"` Description string `gorm:"type:json" json:"description"` Uuid uuid.UUID `gorm:"type:text" json:"uuid"` Users []*User `gorm:"many2many:users_workspaces;" ` }