Files
agent/backend/internal/models/project.go

22 lines
509 B
Go

package models
import "time"
type SaProject struct {
ID uint `gorm:"primaryKey"`
Identity string `gorm:"type:char(36);uniqueIndex"`
OwnerID uint `gorm:"index;not null"`
OwnerIdentity string `gorm:"type:char(36);index"`
Name string `gorm:"not null"`
Identifier string `gorm:"index"`
Icon string
Background string
Description string
CreatedAt time.Time
UpdatedAt time.Time
}
func (SaProject) TableName() string {
return "sa_projects"
}