mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
12 lines
262 B
Go
12 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
|
|
}
|