Files
houston-be/entity/audit.go
Shubham Kirve b974cb6bf3 TP-0000 | Initialize houston repo (#1)
* TP-0000 | intialize houston repo

* TP-0000 | intialize houston repo
2023-03-29 00:01:17 +05:30

17 lines
253 B
Go

package entity
import "gorm.io/gorm"
type IncidentAuditEntity struct {
gorm.Model
IncidentId uint
Event string
UserName string
UserId string
Version int
}
func (IncidentAuditEntity) TableName() string {
return "incident_audit"
}