basket update

This commit is contained in:
Piotr Biernat 2022-12-22 13:59:08 +01:00
parent 597e72169a
commit d614a907b5

View File

@ -6,6 +6,7 @@ import (
type BasketModel struct {
ID string `db:"id"`
State string `db:"state"`
CreatedAt pgtype.Timestamp `db:"created_at"`
UpdatedAt pgtype.Timestamp `db:"updated_at"`
}