Files
cybertron/models/db/project.go

22 lines
767 B
Go
Raw Permalink Normal View History

2024-07-24 12:30:35 +05:30
package db
import (
2024-11-29 16:20:01 +05:30
"github.com/lib/pq"
2024-07-24 15:46:50 +05:30
"time"
2024-07-24 12:30:35 +05:30
)
type Project struct {
2024-11-29 16:20:01 +05:30
ID int `json:"id" gorm:"autoIncrement:true"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
DeletedAt time.Time `json:"deletedAt"`
ProjectReferenceId string `json:"projectReferenceId" gorm:"primaryKey"`
Name string `json:"name" gorm:"unique"`
Team string `json:"team"`
Icon string `json:"icon"`
GithubUrl string `json:"githubUrl"`
Secret string `json:"secret"`
IgnorePatterns pq.StringArray `gorm:"type:text[]"`
Account string `json:"account"`
2024-07-24 12:30:35 +05:30
}