BrickTracker/bricktracker/sql/wish/insert.sql

18 lines
246 B
MySQL
Raw Normal View History

INSERT OR IGNORE INTO "bricktracker_wishes" (
"set",
"name",
"year",
"theme_id",
"number_of_parts",
"image",
"url"
2025-01-17 11:03:00 +01:00
) VALUES (
:set,
2025-01-17 11:03:00 +01:00
:name,
:year,
:theme_id,
:number_of_parts,
:image,
:url
2025-01-17 11:03:00 +01:00
)