wisski-cloud-distillery/internal/models/lock.go
2022-11-16 13:07:10 +01:00

11 lines
286 B
Go

package models
// LockTable is the name of the table the 'Metadatum' model is stored in.
const LockTable = "locks"
// Lock represents a log on WissKI Instances
type Lock struct {
Pk uint `gorm:"column:pk;primaryKey"`
Slug string `gorm:"column:slug;not null"` // slug of instance
}