Removed DBAmendmentLog (not in use) and changed ParnterRate to PartnerRate (typo)

This commit is contained in:
Frederick Holland 2025-08-07 16:09:23 +10:00
parent a457849977
commit e8aeb4d3b7
2 changed files with 2 additions and 16 deletions

View File

@ -9,23 +9,9 @@ type DBAmendment struct {
AmendmentValue string
Requestor string
RequestedAt time.Time
Sequence string
}
func (DBAmendment) TableName() string {
return "gc_amendments"
}
type DBAmendmentLog struct {
Id int `gorm:"primaryKey;autoIncrement"`
ConversationId string `gorm:"index"`
AmendmentColumn string
OldValue string
NewValue string
Requestor string
RequestedAt time.Time
AmendedAt time.Time
}
func (DBAmendmentLog) TableName() string {
return "gc_amendment_logs"
}

View File

@ -54,7 +54,7 @@ type DBClientProcessed struct {
// PARTNER DETAILS:
// ---
PartnerBill float64
ParnterRate float64
PartnerRate float64
// TIMESTAMP DETAILS:
// ---