1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-01-21 09:58:07 +00:00
thatmattlove-hyperglass/core/models/common.go
2023-07-24 10:57:09 -04:00

11 lines
262 B
Go

package models
import "gorm.io/gorm"
type Model struct {
// ID uuid.UUID `gorm:"primaryKey; unique; type:uuid; column:id; default:uuid_generate_v4()"`
// CreatedAt time.Time
// UpdatedAt time.Time
// DeletedAt *time.Time `sql:"index"`
gorm.Model
}