14 lines
323 B
Go
14 lines
323 B
Go
|
package models
|
||
|
|
||
|
import "gorm.io/datatypes"
|
||
|
|
||
|
type AuditRecord struct {
|
||
|
BaseModel
|
||
|
|
||
|
Action string `json:"action"`
|
||
|
Metadata datatypes.JSONMap `json:"metadata"`
|
||
|
UserAgent string `json:"user_agent"`
|
||
|
IpAddress string `json:"ip_address"`
|
||
|
AccountID uint `json:"account_id"`
|
||
|
}
|