package models import "time" type DBAmendment struct { Id int `gorm:"primaryKey;autoIncrement"` ConversationId string `gorm:"index"` AmendmentColumn string AmendmentValue string Requestor string RequestedAt time.Time `gorm:"index"` Sequence string } func (DBAmendment) TableName() string { return "gc_amendments" }