Compare commits

..

1 Commits

Author SHA1 Message Date
6837bd4d6c Update 2025-10-24 13:28:22 +02:00

View File

@@ -9,5 +9,5 @@ type Product struct {
Slug string `db:"slug"` Slug string `db:"slug"`
Price float64 `db:"price"` Price float64 `db:"price"`
CreatedAt time.Time `db:"created_at"` CreatedAt time.Time `db:"created_at"`
UpdatedAt *time.Time `db:"updated_at"` UpdatedAt *time.Time `db:"updated_at,omitempty"`
} }