BrickTracker/bricktracker/sql/part/insert.sql

20 lines
282 B
MySQL
Raw Normal View History

2025-01-28 19:18:51 +01:00
INSERT INTO "bricktracker_parts" (
"id",
2025-01-28 19:18:51 +01:00
"figure",
"part",
"color",
"spare",
"quantity",
2025-01-28 19:18:51 +01:00
"element",
"rebrickable_inventory"
2025-01-17 11:03:00 +01:00
) VALUES (
:id,
2025-01-28 19:18:51 +01:00
:figure,
:part,
:color,
:spare,
2025-01-17 11:03:00 +01:00
:quantity,
2025-01-28 19:18:51 +01:00
:element,
:rebrickable_inventory
2025-01-17 11:03:00 +01:00
)