Compare commits

..

1 Commits

Author SHA1 Message Date
42f9ba2848 Added DBAmendment model 2025-06-27 15:05:06 +10:00

18
models/amendment.go Normal file
View File

@@ -0,0 +1,18 @@
package models
import "time"
type DBAmendment struct {
Id int `gorm:"index"`
IndexColumn string `gorm:"primaryKey;index"`
IndexId string `gorm:"primaryKey;index"`
Table string `gorm:"primaryKey;index"`
AmendmentColumn string
AmendmentValue string
Requestor string
Timestamp time.Time
}
func (DBConversation) TableName() string {
return "gc_amendments"
}