Add void print

This commit is contained in:
aditya.siregar
2025-06-24 02:47:44 +07:00
parent 53014d90ab
commit 1201b2e45b
18 changed files with 2033 additions and 12 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import (
)
type TransactionDB struct {
ID string `gorm:"primaryKey;column:id"`
ID string `gorm:"type:uuid;default:gen_random_uuid();primaryKey;column:id"`
OrderID int64 `gorm:"column:order_id"`
Amount float64 `gorm:"column:amount"`
PaymentMethod string `gorm:"column:payment_method"`