Files
cybertron/models/db/project.go
2024-07-24 15:46:50 +05:30

17 lines
449 B
Go

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"`
}