package db import ( "github.com/google/uuid" "time" ) type Project struct { ID int `json:"id"` CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt"` DeletedAt time.Time `json:"deletedAt"` ProjectReferenceId uuid.UUID `json:"projectReferenceId" gorm:"primaryKey"` Name string `json:"name" gorm:"unique"` Team string `json:"team"` }