mirror of
https://github.com/GlueOps/autoglue.git
synced 2026-02-13 04:40:05 +01:00
11 lines
254 B
Go
11 lines
254 B
Go
package models
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type MasterKey struct {
|
|
ID uuid.UUID `gorm:"type:uuid;default:gen_random_uuid();primaryKey" json:"id"`
|
|
Key string `gorm:"not null"`
|
|
IsActive bool `gorm:"default:true"`
|
|
Timestamped
|
|
}
|