From fb63ea8b7d2ad28712a4ede081f8b06ee3e0b6ee Mon Sep 17 00:00:00 2001 From: Piotr Biernat Date: Tue, 20 Dec 2022 16:09:44 +0100 Subject: [PATCH] update --- model/pricing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/pricing.go b/model/pricing.go index 03132dd..a9efbab 100644 --- a/model/pricing.go +++ b/model/pricing.go @@ -2,6 +2,6 @@ package model type ProductPriceModel struct { ID int `db:"id"` - PID int `db:"pid"` + PID string `db:"pid"` Price float64 `db:"price"` }