10 lines
277 B
SQL
10 lines
277 B
SQL
UPDATE "bricktracker_individual_minifigures"
|
|
SET
|
|
"quantity" = :quantity,
|
|
"description" = :description,
|
|
"storage" = :storage,
|
|
"purchase_location" = :purchase_location,
|
|
"purchase_date" = :purchase_date,
|
|
"purchase_price" = :purchase_price
|
|
WHERE "id" = :id
|