2025-06-27 15:05:06 +10:00
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
|
|
type DBAmendment struct {
|
2025-07-04 11:26:56 +10:00
|
|
|
Id int `gorm:"primaryKey;autoIncrement"`
|
2025-07-04 10:34:16 +10:00
|
|
|
ConversationId string `gorm:"index"`
|
2025-06-27 15:05:06 +10:00
|
|
|
AmendmentColumn string
|
|
|
|
|
AmendmentValue string
|
|
|
|
|
Requestor string
|
2025-10-24 09:27:34 +11:00
|
|
|
RequestedAt time.Time `gorm:"index"`
|
2025-08-07 16:09:23 +10:00
|
|
|
Sequence string
|
2025-06-27 15:05:06 +10:00
|
|
|
}
|
|
|
|
|
|
2025-07-01 14:01:09 +10:00
|
|
|
func (DBAmendment) TableName() string {
|
2025-06-27 15:05:06 +10:00
|
|
|
return "gc_amendments"
|
|
|
|
|
}
|