Add Date and User binding to Transfer

This commit is contained in:
qowevisa 2024-08-03 15:50:22 +03:00
parent 3b17cff1ea
commit ea2c50c654

View File

@ -1,6 +1,10 @@
package db
import "gorm.io/gorm"
import (
"time"
"gorm.io/gorm"
)
type Transfer struct {
gorm.Model
@ -9,4 +13,7 @@ type Transfer struct {
ToCardID uint
ToCard *Card
Value uint64
Date time.Time
UserID uint
User *User
}