Files
cybertron/models/db/project.go

17 lines
493 B
Go
Raw Normal View History

2024-07-24 12:30:35 +05:30
package db
import (
2024-07-24 15:46:50 +05:30
"time"
2024-07-24 12:30:35 +05:30
)
type Project struct {
ID int `json:"id" gorm:"autoIncrement:true"`
2024-07-24 15:46:50 +05:30
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
DeletedAt time.Time `json:"deletedAt"`
2024-08-16 06:26:21 +05:30
ProjectReferenceId string `json:"projectReferenceId" gorm:"primaryKey"`
2024-07-24 15:46:50 +05:30
Name string `json:"name" gorm:"unique"`
Team string `json:"team"`
Icon string `json:"icon"`
2024-07-24 12:30:35 +05:30
}