readysite / pkg / database / model.go
324 B
model.go
package database

import "time"

// Model is the base type for all database entities.
// Embed this in your structs to get ID, CreatedAt, and UpdatedAt fields.
//
// IDs are auto-generated on Insert, timestamps are auto-set on Insert/Update.
type Model struct {
	ID        string
	CreatedAt time.Time
	UpdatedAt time.Time
}
← Back