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 {
|
2024-08-27 13:40:31 +05:30
|
|
|
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"`
|
2024-09-11 12:03:08 +05:30
|
|
|
Icon string `json:"icon"`
|
2024-07-24 12:30:35 +05:30
|
|
|
}
|