patchman/server/database/models.go

22 lines
354 B
Go
Raw Normal View History

2023-10-26 12:56:36 +00:00
package database
import (
"git.jmbit.de/jmb/patchman/common"
"github.com/google/uuid"
"gorm.io/gorm"
"time"
)
type Endpoint struct {
gorm.Model
ID uuid.UUID `gorm:"primaryKey"`
Name string
lastConnection *time.Time
OSInfo common.OSInfo
}
type PackageList struct {
gorm.Model
ID uuid.UUID `gorm:"primaryKey"`
}