mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-21 09:58:07 +00:00
11 lines
262 B
Go
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
|
|
}
|